/* 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.8;
    color: #2a2a2a;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

p {
    margin-bottom: 1.5rem;
}

a {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.btn-accept:hover {
    background: #e8e8e8;
}

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

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

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

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

.brand-logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.brand-logo:hover {
    color: #1a1a1a;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    animation: fadeInCTA 0.5s ease forwards 2s;
}

@keyframes fadeInCTA {
    to {
        opacity: 1;
    }
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.sticky-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* Editorial Container - Core Layout */
.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.narrow-text {
    max-width: 650px;
    margin: 0 auto;
}

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

.hero-text-narrow {
    max-width: 650px;
    margin: 0 auto 3rem;
    text-align: left;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #3a3a3a;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem 0;
    width: 100%;
}

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

.inline-image-offset {
    margin: 3rem 0 3rem 2rem;
    width: calc(100% - 2rem);
}

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

.inline-image-offset figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    font-family: Georgia, serif;
}

/* Content Sections */
.content-block {
    margin-bottom: 4rem;
}

.story-section {
    margin: 5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.insight-reveal {
    background: #f5f5f5;
    padding: 3rem 2rem;
    margin: 4rem -2rem;
}

.approach-section {
    margin: 5rem 0;
}

.problem-amplification {
    margin: 5rem 0;
    padding: 3rem 0;
}

.trust-building {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 3rem 2rem;
    margin: 4rem 0;
}

.benefits-reveal {
    margin: 5rem 0;
}

/* Testimonials - Inline Style */
.testimonials-block {
    margin: 5rem 0;
    padding: 3rem 0;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.testimonial-inline {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 3px solid #1a1a1a;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline blockquote p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 0.8rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Services Preview - Editorial Cards */
.services-preview {
    margin: 5rem 0;
    padding: 3rem 0;
    background: #fff;
}

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

.service-card {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.service-card .price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Urgency Block */
.urgency-block {
    margin: 4rem 0;
    padding: 2rem;
    background: #1a1a1a;
    color: #fff;
}

.urgency-block .narrow-text {
    color: #fff;
}

.urgency-block h2 {
    color: #fff;
}

.urgency-block p {
    color: #e8e8e8;
}

/* Order Section - Editorial Form */
.order-section {
    margin: 6rem 0;
    padding: 4rem 0;
    border-top: 3px solid #1a1a1a;
}

.editorial-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #333;
}

/* Final CTA */
.final-cta {
    margin: 5rem 0 3rem;
    padding: 3rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.final-cta .narrow-text {
    max-width: 550px;
}

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

.cta-block-center {
    margin: 4rem 0;
    text-align: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #1a1a1a;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

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

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

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

.footer-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
}

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

.footer-copyright {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin-top: 1.5rem;
}

/* Page Headers */
.page-header-narrow {
    max-width: 650px;
    margin: 0 auto 4rem;
    text-align: left;
}

/* Service Detail Pages */
.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.price-display {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0;
    display: block;
}

/* Contact Page */
.contact-info {
    line-height: 2;
    font-size: 1.05rem;
}

.contact-info strong {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.contact-info a {
    color: #1a1a1a;
}

/* Legal Pages */
.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

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

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 4rem 0;
}

.thanks-message h1 {
    margin-bottom: 1rem;
}

.thanks-details {
    margin: 3rem auto;
    text-align: left;
    max-width: 550px;
}

.thanks-details ul {
    margin: 1.5rem 0 0 2rem;
    line-height: 2;
}

.thanks-details li {
    margin-bottom: 0.8rem;
}

.thanks-next-steps {
    margin: 3rem auto;
    padding: 2rem;
    background: #f5f5f5;
    max-width: 600px;
}

.thanks-next-steps h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.thanks-cta {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-footer-note {
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-minimal {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

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

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

    .inline-image-offset {
        margin-left: 0;
        width: 100%;
    }

    .insight-reveal {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

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

    .testimonial-inline {
        padding-left: 1.2rem;
    }

    .testimonial-inline blockquote p {
        font-size: 1.1rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .cookie-content {
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
        min-width: 120px;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }

    .thanks-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    h1 {
        font-size: 1.9rem;
    }

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