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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 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: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #1d4ed8;
}

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

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie, .btn-cookie-alt {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Flow - Core Structure */
.editorial-flow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.text-narrow {
    max-width: 100%;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 3rem;
}

.hero-narrow {
    margin-bottom: 2rem;
}

.hero-narrow h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-deck {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
}

/* Story Sections */
.story-intro,
.insight-block,
.problem-amplify,
.turning-point,
.trust-building,
.methodology,
.insight-reveal,
.objection-handling,
.services-reveal,
.urgency-soft,
.final-cta,
.philosophy-section,
.approach-section,
.results-section,
.team-section,
.mission-section,
.services-intro,
.comparison-section,
.guarantee-section,
.contact-info,
.contact-cta,
.faq-section,
.thanks-section,
.legal-section {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.content-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
}

/* Inline CTAs */
.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem 0;
    text-align: center;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

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

.inline-cta-block {
    margin: 3rem 0;
}

.cta-card, .cta-card-alt {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2563eb;
}

.cta-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.cta-card-alt {
    background: #ffffff;
    border: 2px solid #2563eb;
}

.cta-eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 1rem;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.testimonial cite {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: #666;
}

/* Methodology Steps */
.method-step,
.difference-point,
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.method-step:last-child,
.difference-point:last-child,
.faq-item:last-child {
    border-bottom: none;
}

.method-step h3,
.difference-point h3,
.faq-item h3 {
    margin-top: 0;
}

/* Lists */
.benefit-list,
.insight-list,
.results-list,
.steps-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li,
.insight-list li,
.results-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.benefit-list li:before,
.insight-list li:before,
.results-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.steps-list {
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 0;
    margin-bottom: 2rem;
    position: relative;
}

.steps-list li strong {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.steps-list li strong:before {
    content: counter(step-counter) ". ";
    color: #2563eb;
    font-weight: 700;
}

/* Services Cards */
.services-editorial {
    margin: 3rem 0;
}

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

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

.service-card.featured {
    border-color: #2563eb;
    border-width: 3px;
    background: #f8f9ff;
}

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

.service-card h3 {
    margin-top: 0;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-includes,
.service-delivery {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.service-card ul {
    margin-top: 0.75rem;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-service {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
}

.btn-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

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

/* Modal */
.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.6);
    backdrop-filter: blur(4px);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close:hover {
    color: #2c2c2c;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

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

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

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

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #cccccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.9rem;
    color: #999999;
    margin: 0;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.header-intro {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Contact Blocks */
.contact-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.contact-block:last-child {
    border-bottom: none;
}

.contact-block h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.thanks-cta {
    margin: 3rem 0;
}

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

.contact-reminder {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

/* Legal Pages */
.legal-page .text-narrow {
    max-width: 800px;
}

.legal-updated {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.legal-section:first-of-type h2 {
    border-top: none;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.cta-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.urgency-text {
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-minimal {
        padding: 1rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    .hero-narrow h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

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

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

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

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

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

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

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

@media (min-width: 769px) and (max-width: 1024px) {
    .editorial-flow {
        max-width: 620px;
    }
}
