/* 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-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5278;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #229954;
}

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #2980b9;
}

/* Editorial Flow Layout */
.editorial-flow {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-editorial {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-editorial h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.hero-image {
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Content Narrow (Editorial Style) */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    flex: 1;
}

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

.content-narrow h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3d5267;
}

.opening-graph {
    font-size: 1.35rem;
    line-height: 1.7;
    margin: 2rem 0;
    font-weight: 500;
    color: #2c3e50;
}

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

/* Blockquote */
blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
}

blockquote p {
    margin: 0;
}

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

.insight-box h3 {
    margin-top: 0;
    color: #b8860b;
    font-size: 1.3rem;
}

.insight-box p {
    margin-bottom: 1rem;
    color: #5a4a1f;
}

.insight-box p:last-child {
    margin-bottom: 0;
}

.insight-box em {
    font-weight: 600;
    font-style: normal;
    color: #8b6914;
}

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

.priority-list li,
.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #3d5267;
    line-height: 1.6;
}

.priority-list li strong,
.benefit-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Testimonials */
.testimonial-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-block cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

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

.cta-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 3px;
    display: inline-block;
}

.cta-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

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

.cta-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Urgency Section */
.urgency-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #ffe6e6;
    border-left: 4px solid #e74c3c;
    border-radius: 6px;
}

.urgency-section h3 {
    margin-top: 0;
    color: #c0392b;
    font-size: 1.4rem;
}

.urgency-section p {
    color: #5a2424;
}

/* Service Cards Inline */
.service-card-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card-inline:hover {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.service-card-inline h2,
.service-card-inline h3 {
    color: #2c3e50;
    margin-top: 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0 1.5rem;
}

.btn-service {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Form Section */
.form-section-editorial {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.editorial-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.btn-sticky {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

/* Footer */
.footer-editorial {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 2rem;
    margin-top: auto;
}

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

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

.footer-nav a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-content p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Thanks Content */
.thanks-content {
    padding-top: 4rem;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    .content-narrow {
        padding: 2rem 1.5rem;
    }

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

    .content-narrow p,
    .priority-list li,
    .benefit-list li {
        font-size: 1rem;
    }

    .opening-graph {
        font-size: 1.15rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

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

    .hero-editorial {
        padding: 3rem 1.5rem 2rem;
    }

    .hero-editorial h1 {
        font-size: 1.6rem;
    }

    .content-narrow {
        padding: 1.5rem 1rem;
    }

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