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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafbfc;
    font-size: 17px;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.article-hero {
    margin-bottom: 3rem;
}

.hero-text-wrapper h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-image {
    margin: 2.5rem 0;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-block h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.content-block h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.3rem;
    color: #2c3e50;
}

.content-block ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-block li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.content-block li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

.opening-graf {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.inline-image,
.inline-image-wide {
    margin: 2.5rem 0;
}

.inline-image img,
.inline-image-wide img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.inline-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

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

.cta-link,
.cta-link-strong {
    font-size: 1.1rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: all 0.2s;
}

.cta-link:hover,
.cta-link-strong:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.cta-link-strong {
    font-size: 1.2rem;
    color: #dc2626;
    border-bottom-color: #dc2626;
}

.cta-link-strong:hover {
    color: #b91c1c;
    border-bottom-color: #b91c1c;
}

.highlight-section {
    background: #f8fafc;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    margin-bottom: 1.2rem;
    padding-left: 0;
    line-height: 1.7;
}

.insight-list li:before {
    content: none;
}

.insight-list strong {
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-block {
    margin: 3rem 0;
    padding: 2rem;
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-style: italic;
    margin: 0;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

.services-showcase {
    margin: 3rem 0;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.service-card.featured {
    border-color: #2563eb;
    background: #f0f9ff;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #2c3e50;
}

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

.service-timeline {
    font-size: 0.9rem;
    color: #64748b;
    margin: 1rem 0;
    font-style: italic;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.service-select {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.service-select:hover {
    background: #1d4ed8;
}

.final-cta-block {
    margin: 4rem 0 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    text-align: center;
    color: white;
}

.final-cta-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.final-note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: #64748b;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #1a1a1a;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.sticky-cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s;
}

.sticky-cta-button:hover {
    background: #1d4ed8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.btn-reject {
    background: #ef4444;
    color: white;
}

.btn-reject:hover {
    background: #dc2626;
}

.contact-info-block {
    margin: 2rem 0;
}

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

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

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

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

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

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

.site-footer {
    background: #1a1a1a;
    color: #e5e7eb;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

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

.legal-content .last-updated {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    margin-top: 1.8rem;
}

.highlight-text {
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-text-wrapper h1 {
        font-size: 2rem;
    }

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

    .content-block h2 {
        font-size: 1.6rem;
    }

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

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .final-cta-block {
        padding: 2rem 1.5rem;
    }

    .final-cta-block h3 {
        font-size: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 2rem;
    }
}

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

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.7rem;
    }

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