/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Container - Narrow Editorial Width */
.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Editorial Style */
.header-editorial {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.site-branding {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    margin: 0;
}

.nav-minimal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-minimal a {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-minimal a:hover {
    color: #2563eb;
    text-decoration: none;
}

/* Editorial Flow Layout */
.editorial-flow {
    margin-top: 3rem;
}

.story-content section {
    margin-bottom: 4rem;
}

/* Hero - Story Style */
.hero-story {
    padding: 2rem 0 3rem;
}

.headline-major {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.subhead {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    margin-top: 2rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Content Images */
.image-inline {
    margin: 2rem 0;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.caption {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

.image-break {
    margin: 3rem 0;
}

/* Text Sections */
.intro-narrative,
.problem-section,
.why-now,
.closing-section,
.about-story,
.approach-section,
.values-section,
.team-section,
.difference-section,
.contact-approach,
.thanks-content,
.legal-content {
    line-height: 1.8;
}

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

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    color: #1e293b;
}

.section-title.centered {
    text-align: center;
}

/* CTAs */
.inline-cta {
    display: inline-block;
    color: #2563eb;
    font-weight: 500;
    margin-top: 1rem;
    font-size: 1.05rem;
}

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

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.btn-secondary {
    background: #0f172a;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #1e293b;
    text-decoration: none;
}

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

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

.btn-service {
    background: #f1f5f9;
    color: #2563eb;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #e2e8f0;
    text-decoration: none;
}

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

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

/* Insight Block */
.insight-block {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin: 3rem 0;
}

.insight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Services */
.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.service-card p {
    color: #475569;
    line-height: 1.7;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin: 1rem 0;
}

.service-full {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.service-full.featured-service {
    border-color: #2563eb;
    background: #f8fafc;
}

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

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin: 1rem 0 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
}

.inclusion-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.inclusion-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #475569;
}

.inclusion-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.best-for {
    font-style: italic;
    color: #64748b;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 4px;
}

.pricing-notes {
    background: #fffbeb;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin: 3rem 0;
}

.pricing-guarantee {
    font-weight: 600;
    color: #0f172a;
    margin-top: 1.5rem;
}

/* Testimonials */
.trust-building {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.testimonial {
    border-left: 3px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

/* Secondary CTA Sections */
.secondary-cta,
.cta-about,
.cta-services,
.cta-contact {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f1f5f9;
    border-radius: 8px;
    margin: 3rem 0;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 1.5rem;
}

.alternative-cta {
    margin-top: 1rem;
    color: #64748b;
}

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

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 2rem;
}

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    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;
}

.form-group textarea {
    resize: vertical;
}

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

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

.meeting-types {
    margin: 3rem 0;
}

.meeting-option {
    margin-bottom: 2rem;
}

.meeting-option h4 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.faq-contact {
    margin: 3rem 0;
}

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

.faq-item h4 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

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

.confirmation-box {
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.confirmation-text {
    color: #065f46;
    font-size: 1.05rem;
    margin: 0;
}

.next-steps {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-reassurance {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-reassurance h4 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

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

.resource-list {
    list-style: none;
    margin: 1.5rem 0;
}

.resource-list li {
    margin-bottom: 0.75rem;
}

.thanks-footer-cta {
    text-align: center;
    margin: 3rem 0;
}

/* About Page Specific */
.page-hero {
    padding: 2rem 0 3rem;
}

.value-block {
    margin-bottom: 2rem;
}

.value-block h4 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-header {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.legal-date {
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

.legal-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

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

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

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

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

/* Footer */
.footer-minimal {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-nav a {
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
}

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

.footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 1.75rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

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

.btn-cookie.accept:hover {
    background: #047857;
}

.btn-cookie.reject {
    background: #64748b;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #475569;
}

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

    .headline-major {
        font-size: 2rem;
    }

    .subhead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-minimal {
        gap: 1.25rem;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .service-card,
    .service-full {
        padding: 1.5rem;
    }

    .insight-block,
    .form-section,
    .trust-building,
    .pricing-notes {
        padding: 1.5rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container-narrow {
        padding: 0 1rem;
    }

    .headline-major {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-service {
        padding: 0.75rem 1.5rem;
    }
}
