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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: white;
}

.btn-accept:hover {
    background-color: #357abd;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

/* Editorial Navigation */
.editorial-nav {
    background-color: #ffffff;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

/* Editorial Main Article */
.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.article-header {
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-lead {
    font-size: 21px;
    color: #5a5a5a;
    line-height: 1.6;
    font-style: italic;
}

/* Story Sections */
.story-section {
    margin-bottom: 60px;
}

.story-content p {
    margin-bottom: 24px;
    font-size: 19px;
    color: #3a3a3a;
}

.story-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.inline-image {
    margin: 40px 0;
    width: 100%;
}

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

.editorial-quote {
    margin: 40px 0;
    padding: 28px 32px;
    background-color: #f5f5f5;
    border-left: 4px solid #4a90e2;
    font-size: 20px;
    font-style: italic;
    color: #2a2a2a;
    line-height: 1.6;
}

.editorial-list {
    margin: 32px 0;
    padding-left: 28px;
}

.editorial-list li {
    margin-bottom: 16px;
    font-size: 19px;
    color: #3a3a3a;
    line-height: 1.7;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #357abd;
}

/* Insights Grid */
.insights-section {
    margin: 70px 0;
}

.insights-section h2 {
    font-size: 32px;
    margin-bottom: 36px;
    font-weight: 600;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.insight-card {
    padding: 28px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.insight-card p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonial-section {
    margin: 70px 0;
    padding: 48px 0;
    background-color: #f9f9f9;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    padding: 32px;
    background-color: #ffffff;
    border-left: 3px solid #4a90e2;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #6a6a6a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Services Reveal */
.services-reveal {
    margin: 80px 0;
    scroll-margin-top: 100px;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.services-intro {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.services-pricing {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-item {
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
}

/* CTA Sticky Trigger */
.cta-sticky-trigger {
    margin: 50px 0;
    padding: 36px;
    background-color: #fff8e6;
    border: 2px solid #f0c419;
}

.urgency-text {
    font-size: 19px;
    color: #2a2a2a;
    margin-bottom: 24px;
    font-weight: 500;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #d35400;
}

/* Form Section */
.form-section {
    margin: 80px 0;
    padding: 48px;
    background-color: #f5f5f5;
    scroll-margin-top: 100px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 36px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #c0c0c0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #2ecc71;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #27ae60;
}

/* Final CTA */
.final-cta {
    margin: 80px 0;
    text-align: center;
    padding: 60px 0;
    background-color: #1a1a1a;
    color: white;
    margin-left: -24px;
    margin-right: -24px;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 19px;
    color: #d0d0d0;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-final {
    display: inline-block;
    padding: 18px 48px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-final:hover {
    background-color: #357abd;
}

/* Footer */
.editorial-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
}

.footer-bottom p {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-btn {
    display: block;
    padding: 14px 28px;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #d35400;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-nav {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-main {
        padding: 40px 20px 80px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-lead {
        font-size: 18px;
    }

    .story-content p {
        font-size: 17px;
    }

    .story-content h2 {
        font-size: 26px;
    }

    .form-section {
        padding: 32px 24px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
