/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.btn-cookie-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #059669;
}

.btn-cookie-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #4b5563;
}

/* Navigation */
.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
}

.brand:hover {
    color: #2563eb;
}

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

.nav-links a {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Main Article Layout - Editorial Style */
.main-article {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.article-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

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

.hero-content-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 400;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Article Sections */
.article-section {
    padding: 4rem 2rem;
}

.article-section.bg-light {
    background: #f9fafb;
}

.article-section.bg-dark {
    background: #1f2937;
    color: #f9fafb;
}

.article-section.bg-dark h2,
.article-section.bg-dark h3 {
    color: #ffffff;
}

.article-section.bg-dark a {
    color: #60a5fa;
}

.article-section.bg-dark a:hover {
    color: #93c5fd;
}

/* Content Width - Editorial Narrow */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

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

.content-narrow h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #374151;
}

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

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

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

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem 0;
    border-radius: 6px;
    overflow: hidden;
}

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

/* CTA Elements */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-inline {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.inline-cta-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-block p {
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Services Editorial Layout */
.services-editorial {
    max-width: 680px;
    margin: 3rem auto;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-meta {
    margin-top: 1.5rem;
}

.price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* Price Boxes */
.price-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    border-radius: 6px;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #059669;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 0.75rem;
}

.price-note {
    font-size: 0.9375rem;
    color: #047857;
    margin: 0;
}

/* Process Lists */
.process-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

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

/* Testimonials */
.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-size: 0.9375rem;
    font-style: normal;
    color: #6b7280;
    font-weight: 500;
}

/* Forms - Editorial Style */
.editorial-form {
    margin: 2.5rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    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: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Values List */
.values-list {
    margin: 2.5rem 0;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Lists */
.expertise-list,
.quality-list {
    margin: 2rem 0;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Contact Info */
.contact-info {
    margin: 2.5rem 0;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
}

.contact-item .note {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.thanks-info,
.thanks-service,
.thanks-next,
.thanks-contact {
    margin: 3rem 0;
}

.thanks-info h2,
.thanks-next h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

.thanks-contact p {
    font-size: 1.0625rem;
    color: #4b5563;
}

/* Footer */
.article-footer {
    margin-top: auto;
    padding: 3rem 2rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.footer-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.btn-footer {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-note {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 1.75rem;
    background: #10b981;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .hero-content-narrow h1 {
        font-size: 1.875rem;
    }

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

    .article-section {
        padding: 2.5rem 1.5rem;
    }

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

    .content-narrow h3 {
        font-size: 1.25rem;
    }

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

    .btn-sticky {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .cookie-content {
        padding: 0;
    }

    .thanks-content h1 {
        font-size: 1.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content-narrow h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-content-narrow h1 {
        font-size: 1.625rem;
    }

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

    .article-section {
        padding: 2rem 1rem;
    }

    .thanks-links {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}