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

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #1d4ed8;
}

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

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    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-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

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

/* Editorial Wrapper - Main Container */
.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero-editorial {
    padding: 3rem 0 4rem;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

/* Page Header */
.page-header {
    padding: 2rem 0 3rem;
}

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

/* Story Content */
.story-content {
    max-width: 100%;
}

.story-section {
    margin-bottom: 3rem;
}

.inline-image {
    margin: 2rem 0;
    border-radius: 4px;
}

/* Quote Box */
.quote-box {
    background-color: #f8f9fa;
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #1e293b;
}

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

/* Numbered List */
.numbered-list {
    margin: 2rem 0;
}

.list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.item-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.item-text p {
    margin-bottom: 0;
    color: #475569;
}

/* Inline CTA */
.cta-inline {
    background-color: #eff6ff;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.text-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}

.text-link:hover {
    color: #1d4ed8;
}

/* Insight Block */
.insight-block {
    background-color: #ffffff;
    padding: 3rem 2rem;
    margin: 3rem -2rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* Trust Section */
.trust-section {
    margin: 3rem 0;
}

.testimonial-inline {
    background-color: #f9fafb;
    border-left: 3px solid #10b981;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-size: 1.05rem;
}

.testimonial-inline p {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

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

/* Benefits Reveal / Services */
.benefits-reveal {
    margin: 4rem 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-card p {
    color: #475569;
    margin-bottom: 1rem;
}

.service-includes {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.price-reveal {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-old {
    font-size: 1.3rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Urgency Block */
.urgency-block {
    margin: 3rem 0;
}

.urgency-box {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 2rem;
    border-radius: 4px;
}

.urgency-box h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.urgency-box p {
    color: #78350f;
    margin-bottom: 0.8rem;
}

/* Form Section */
.form-section {
    background-color: #f8fafc;
    padding: 3rem 2rem;
    margin: 3rem -2rem;
    border-radius: 8px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Final Testimonials */
.final-testimonials {
    margin: 3rem 0;
}

/* Closing CTA */
.closing-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
}

.closing-cta h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.closing-cta p {
    color: #e0e7ff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #667eea;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e5e7eb;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

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

.sticky-cta-btn {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: #10b981;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-cta-btn:hover {
    background-color: #059669;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

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

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

.footer-links a {
    color: #d1d5db;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

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

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

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

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

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.contact-item p {
    color: #475569;
    line-height: 1.6;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #475569;
}

/* Services Overview */
.services-overview {
    margin: 2rem 0;
}

/* Thanks Section */
.thanks-section {
    padding: 3rem 0;
}

.thanks-box {
    text-align: center;
    background-color: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.thanks-box h1 {
    color: #065f46;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.1rem;
    color: #047857;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #059669;
    color: #ffffff;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #1f2937;
}

.btn-secondary:hover {
    background-color: #d1d5db;
    color: #1f2937;
}

.next-steps {
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .editorial-wrapper {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-text-center h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

    .quote-box,
    .testimonial-inline {
        padding: 1rem 1.5rem;
    }

    .number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }

    .insight-block,
    .form-section {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 2rem 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.7rem;
    }

    .closing-cta {
        padding: 2rem 1rem;
    }

    .closing-cta h2 {
        font-size: 1.8rem;
    }

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

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

    .thanks-box {
        padding: 2rem 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .contact-info {
        gap: 1.5rem;
    }
}

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

    .nav-links {
        gap: 1rem;
    }

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