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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

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

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

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

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

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

/* Navigation - Minimal Style */
.nav-minimal {
    background: #fff;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #007bff;
}

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

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.article-meta {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.lead-text p {
    margin-bottom: 1rem;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

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

.article-image,
.article-image-small {
    margin: 3rem 0;
}

.article-image img,
.article-image-small img {
    width: 100%;
    border-radius: 8px;
}

.article-image-small {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Editorial Quote */
.editorial-quote {
    border-left: 4px solid #1a1a1a;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    font-size: 1.25rem;
    font-style: italic;
    background: #f5f5f5;
    line-height: 1.6;
}

.editorial-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

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

.cta-link,
.cta-secondary {
    font-size: 1.05rem;
    font-weight: 600;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 2px;
    transition: all 0.2s;
}

.cta-link:hover,
.cta-secondary:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Insight Box */
.insight-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.insight-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.insight-box p {
    margin: 0;
    font-size: 1.05rem;
}

/* Trust Element */
.trust-element {
    background: #e7f3ff;
    border-left: 4px solid #007bff;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.trust-element p {
    margin: 0;
    font-size: 1rem;
}

/* Urgency Element */
.urgency-element {
    background: #fff5f5;
    border: 2px solid #dc3545;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    text-align: center;
}

.urgency-element p {
    margin: 0;
    font-size: 1.1rem;
    color: #721c24;
}

/* Services Embedded */
.services-embedded {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

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

.btn-select-service {
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Testimonial Inline */
.testimonial-inline {
    background: #f8f9fa;
    border-left: 4px solid #6c757d;
    padding: 2rem;
    margin: 3rem 0;
    font-style: italic;
    border-radius: 4px;
}

.testimonial-inline p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

/* Form Container */
.form-container {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 3rem;
    margin: 4rem 0;
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    width: 100%;
    background: #28a745;
    color: #fff;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Final Note */
.final-note {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.final-note p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

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

.sticky-cta-btn {
    display: block;
    background: #dc3545;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.5);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-copy {
    color: #999;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-content {
        padding: 2rem 1.5rem 4rem;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

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

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

    .article-body h2 {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}

/* About Page Styles */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
}

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

/* Services Page Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Contact Page */
.contact-info {
    max-width: 600px;
    margin: 3rem auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

/* Thanks Page */
.thanks-container {
    max-width: 700px;
    margin: 6rem auto;
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #28a745;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-container .btn-home {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s;
}

.thanks-container .btn-home:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
