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

/* Navigation - Minimal Style */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Editorial Flow - Main Container */
.editorial-flow {
    margin-top: 70px;
}

/* Hero Editorial Style */
.hero-editorial {
    padding: 4rem 2rem 3rem;
    background-color: #fafafa;
}

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

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 2rem auto 0;
    display: block;
    border-radius: 4px;
}

/* Content Narrow - Article Style */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Spacing */
section {
    padding: 3rem 0;
}

.intro-section {
    padding: 4rem 0;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2a2a2a;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Insight Block */
.insight-block {
    background-color: #f8f8f8;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.quote-large {
    max-width: 680px;
    margin: 0 auto;
}

.quote-large p {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.quote-large cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
    display: block;
}

/* Story Section - Pattern Items */
.story-section {
    padding: 4rem 0;
}

.pattern-item {
    margin-bottom: 4rem;
}

.inline-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

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

.cta-inline p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-text {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

.btn-text:hover {
    opacity: 0.7;
}

/* Testimonials */
.testimonial-inline {
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

/* Method Section */
.method-section {
    background-color: #fafafa;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.method-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.method-card h4 {
    margin-top: 0;
}

.method-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

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

.insight-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

ul {
    list-style-type: disc;
}

/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
}

.testimonial-block {
    background-color: #f8f8f8;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

/* Services Reveal Section */
.services-reveal {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 3rem;
    text-align: center;
}

.service-card {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.service-card.featured {
    border: 2px solid #1a1a1a;
    background-color: #ffffff;
}

.badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.service-header h3 {
    margin-top: 0;
    font-size: 1.75rem;
}

.service-desc {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.service-price {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
}

/* Form Section */
.form-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    margin: 3rem 0 0;
}

.form-section h2 {
    color: #ffffff;
    margin-top: 0;
}

.form-intro {
    color: #e5e5e5;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

.btn-secondary:hover {
    background-color: #2a2a2a;
    border-color: #2a2a2a;
}

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

.btn-sticky {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p {
    color: #999;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e5e5e5;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #2a2a2a;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

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

/* Page Content (for other pages) */
.page-content {
    margin-top: 70px;
    padding: 4rem 2rem;
    min-height: calc(100vh - 300px);
}

/* Contact Page */
.contact-info {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    margin-top: 0;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-note {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.faq-section {
    margin: 4rem 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    margin-top: 0;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.step-number {
    background-color: #1a1a1a;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
}

.service-selected {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    display: none;
}

.thanks-note {
    background-color: #fff8e1;
    padding: 1.5rem;
    border-left: 4px solid #ffc107;
    margin: 2rem 0;
    text-align: left;
}

.thanks-cta {
    margin-top: 3rem;
    text-align: left;
}

.thanks-cta ul {
    margin-top: 1rem;
}

.thanks-cta li {
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1rem 2rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f8f8f8;
    font-weight: 600;
}

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

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .quote-large p {
        font-size: 1.25rem;
    }

    section {
        padding: 2rem 0;
    }

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

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

    .price {
        font-size: 2rem;
    }

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

    .btn-sticky {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

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