/* 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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1a365d;
}

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

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

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

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

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

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

.btn-accept {
    background: #2c5282;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1a365d;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: #ffffff;
}

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

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

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4a5568;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 100%;
    margin: 0 auto;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

.hero-image {
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

/* Story Sections */
section {
    padding: 3.5rem 0;
}

.story-intro,
.problem-reveal,
.insight-section,
.story-transition,
.trust-layer,
.benefit-reveal,
.social-proof,
.philosophy-depth,
.cta-section,
.urgency-layer,
.closing-thought {
    border-bottom: 1px solid #f7fafc;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1.25rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

h4 {
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

/* Drop Cap */
.dropcap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.85;
    font-weight: 700;
    margin: 0.1rem 0.15rem 0 0;
    color: #1a1a1a;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 6px;
}

/* Quote Block */
.quote-block {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
}

.quote-block cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    color: #718096;
    margin-top: 1rem;
}

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

.link-subtle {
    font-size: 1.05rem;
    color: #2c5282;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.link-subtle:hover {
    border-bottom-color: #2c5282;
}

/* Lists */
.insight-list,
.service-preview-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li,
.service-preview-list li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.insight-list li::before,
.service-preview-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 600;
}

/* CTA Boxes */
.cta-inline-box,
.cta-box-large {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left: 4px solid #2c5282;
}

.cta-inline-box p {
    margin-bottom: 1rem;
}

.cta-box-large h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.cta-box-large p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

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

.btn-primary {
    background: #2c5282;
    color: #ffffff;
}

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

.btn-primary-large {
    background: #1a365d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: #2c5282;
    color: #ffffff;
}

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

.btn-secondary:hover {
    background: #2c5282;
    color: #ffffff;
}

/* Benefit Grid */
.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

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

.benefit-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

/* Testimonials */
.testimonial-inline,
.testimonial-block {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left: 4px solid #718096;
}

.testimonial-inline p,
.testimonial-block p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.testimonial-inline cite,
.testimonial-block cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #718096;
}

/* Closing */
.closing-thought {
    padding: 4rem 0;
}

.closing-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 2rem;
}

.signature {
    font-size: 1.1rem;
    font-style: italic;
    color: #718096;
    text-align: right;
}

/* Services Page */
.page-header-editorial {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a5568;
}

.services-intro {
    padding: 2.5rem 0;
}

.services-list {
    padding: 1rem 0 3rem;
}

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

.service-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-item.featured {
    border-color: #2c5282;
    background: #f7fafc;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5282;
}

.service-body ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-body li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.service-fit {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-top: 1.5rem;
}

.btn-select-service {
    background: #2c5282;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1.5rem;
}

.btn-select-service:hover {
    background: #1a365d;
}

/* Form Section */
.form-section {
    background: #f7fafc;
    padding: 4rem 0;
    margin: 3rem 0 0;
}

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

.inquiry-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-group input[readonly] {
    background: #f7fafc;
    cursor: not-allowed;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

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

/* Services FAQ */
.services-faq {
    padding: 3rem 0;
}

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

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

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

/* Contact Page */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

.contact-note {
    background: #fff5e6;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
    margin: 2rem 0;
}

.contact-note p {
    margin: 0;
    font-size: 1rem;
}

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

.contact-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-cta {
    background: #f7fafc;
    padding: 3rem 0;
    margin: 3rem 0 0;
}

.link-inline-large {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c5282;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.link-inline-large:hover {
    border-bottom-color: #2c5282;
}

.cta-subtext {
    font-size: 1rem;
    color: #718096;
    margin-top: 1rem;
}

.link-inline {
    color: #2c5282;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.link-inline:hover {
    border-bottom-color: #2c5282;
}

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

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

.thanks-lead {
    font-size: 1.35rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #2c5282;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #2c5282;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.thanks-note {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-note p {
    margin: 0;
    font-size: 1.05rem;
}

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

.thanks-closing {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.closing-thought {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

/* About Page */
.principle-block,
.approach-layer {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.principle-block h3,
.approach-layer h4 {
    margin-top: 0;
}

.principle-block p,
.approach-layer p {
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.cta-note {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #718096;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
}

.legal-content h3 {
    font-size: 1.35rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content p {
    font-size: 1.05rem;
}

.legal-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
    padding: 0.875rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    background: #f7fafc;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table code {
    background: #f7fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
}

/* Footer */
.footer-minimal {
    background: #f7fafc;
    padding: 2.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 4rem;
}

.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-size: 0.9rem;
    color: #718096;
}

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

.footer-copy {
    font-size: 0.875rem;
    color: #a0aec0;
    margin: 0;
}

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

.sticky-btn {
    display: inline-block;
    background: #1a365d;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.sticky-btn:hover {
    background: #2c5282;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.final-cta .btn-secondary {
    margin-bottom: 1rem;
}

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

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

    .nav-links {
        gap: 1.25rem;
    }

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

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

    .hero-editorial h1 {
        font-size: 2.25rem;
    }

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    p {
        font-size: 1.05rem;
    }

    .quote-block {
        font-size: 1.25rem;
        padding: 1.5rem 0;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item {
        padding: 1.75rem;
    }

    .inquiry-form {
        padding: 1.75rem;
    }

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

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

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

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

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

    .cookies-table th,
    .cookies-table td {
        padding: 0.625rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.85rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-primary-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}