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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 18px;
}

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

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

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 16px;
    color: #4b5563;
    transition: color 0.2s ease;
}

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

/* Editorial Container - Article-like structure */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

/* Hero Section */
.article-hero {
    margin-bottom: 60px;
}

.article-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-image {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Article Content - Editorial Style */
.article-content {
    font-size: 19px;
    line-height: 1.8;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #374151;
    font-weight: 400;
}

.article-content h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 64px;
    margin-bottom: 24px;
    color: #111827;
}

.article-content h3 {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1f2937;
}

.article-content h4 {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #374151;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
}

/* Inline CTAs - Embedded in content */
.inline-cta {
    margin: 48px 0;
    padding: 32px;
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.cta-link {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #2563eb;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Story Block - Inline images with captions */
.story-block {
    margin: 48px 0;
}

.story-block img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.caption {
    font-size: 16px;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

/* Insight List */
.insight-list {
    margin: 32px 0;
    list-style: none;
    padding: 0;
}

.insight-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.insight-list li:last-child {
    border-bottom: none;
}

/* Quote Section */
.quote-section {
    margin: 56px 0;
    padding: 40px;
    background: #f9fafb;
    border-radius: 8px;
}

.quote-section blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 16px;
}

.quote-section cite {
    font-size: 17px;
    color: #6b7280;
    font-style: normal;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background: #eff6ff;
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    color: #1e40af;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #3b82f6;
    font-style: normal;
}

/* Problem Section */
.problem-section {
    margin: 48px 0;
}

.problem-section img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* Framework Section */
.framework-section {
    margin: 48px 0;
}

.framework-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.framework-item:last-child {
    border-bottom: none;
}

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

/* Services Editorial Style */
.services-editorial {
    margin: 56px 0;
}

.service-card {
    margin-bottom: 56px;
    padding: 40px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-card h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #111827;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card ul {
    margin: 24px 0;
    padding-left: 20px;
}

.service-card ul li {
    margin-bottom: 10px;
}

.price-reveal {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
}

.select-service {
    padding: 14px 28px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* Form Section - Editorial style */
.form-section {
    margin: 64px 0;
    padding: 48px;
    background: #f9fafb;
    border-radius: 8px;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 32px;
}

.editorial-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 17px;
    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;
}

.submit-button {
    padding: 16px 40px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Final CTA Section */
.final-cta-section {
    margin: 48px 0;
    padding: 40px;
    background: #eff6ff;
    border-radius: 8px;
    text-align: center;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 0;
}

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

.sticky-cta-button {
    display: block;
    padding: 16px 32px;
    background: #2563eb;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

/* Footer - Minimal */
.footer-minimal {
    border-top: 1px solid #e5e7eb;
    padding: 48px 20px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 15px;
    color: #6b7280;
}

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

.footer-copy {
    font-size: 14px;
    color: #9ca3af;
}

/* About Page Specific */
.about-intro {
    margin: 48px 0;
}

.about-intro img {
    width: 100%;
    border-radius: 8px;
}

.insight-box {
    margin: 48px 0;
    padding: 32px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.insight-box p {
    margin-bottom: 0;
    font-size: 20px;
    color: #92400e;
}

.team-philosophy {
    margin: 48px 0;
    padding: 40px;
    background: #f9fafb;
    border-radius: 8px;
}

.team-philosophy h3 {
    margin-top: 0;
}

.pillars-section {
    margin: 48px 0;
}

.pillar {
    margin-bottom: 32px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 8px;
}

.pillar h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    color: #111827;
}

.pillar p {
    margin-bottom: 0;
}

.cta-about {
    margin: 64px 0;
    padding: 48px;
    background: #eff6ff;
    border-radius: 8px;
    text-align: center;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 24px;
}

/* Services Page Specific */
.services-detailed {
    margin: 48px 0;
}

.service-detail {
    margin-bottom: 64px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 64px;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.service-header h2 {
    margin: 0;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.service-image {
    margin: 32px 0;
}

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

.service-body ul {
    margin: 24px 0;
}

.services-cta {
    margin: 64px 0;
    padding: 48px;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.services-cta h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.services-cta p {
    margin-bottom: 24px;
}

/* Contact Page Specific */
.contact-intro {
    margin: 48px 0;
}

.contact-info-blocks {
    margin: 64px 0;
}

.contact-block {
    margin-bottom: 48px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 8px;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #111827;
}

.contact-block p {
    margin-bottom: 8px;
}

.contact-block p:last-of-type {
    margin-bottom: 0;
}

.contact-note {
    font-size: 16px;
    color: #6b7280;
    font-style: italic;
}

.contact-map {
    margin: 64px 0;
}

.map-placeholder {
    margin-top: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-faq {
    margin: 64px 0;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    margin-bottom: 0;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
    padding-top: 100px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #059669;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
    color: #374151;
}

.service-confirmation {
    margin: 32px 0;
    padding: 24px;
    background: #d1fae5;
    border-radius: 8px;
}

.service-selected {
    font-size: 18px;
    color: #065f46;
    margin: 0;
}

.next-steps {
    font-size: 18px;
    margin: 48px 0 16px;
    color: #374151;
}

.thanks-links {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.thanks-links li {
    margin-bottom: 12px;
}

.thanks-links a {
    font-size: 18px;
    font-weight: 500;
}

.thanks-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.thanks-footer p {
    font-size: 16px;
    color: #6b7280;
}

/* Legal Pages */
.legal-content h2 {
    font-size: 30px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
}

.last-updated {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 15px;
    color: #6b7280;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
}

.cookies-table thead {
    background: #f9fafb;
}

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

.cookies-table th {
    font-weight: 600;
    font-size: 16px;
    color: #374151;
}

.cookies-table td {
    font-size: 15px;
    color: #4b5563;
}

/* Page Header */
.page-header {
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
    }

    .article-hero h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 19px;
    }

    .article-content {
        font-size: 18px;
    }

    .lead-text {
        font-size: 21px;
    }

    .article-content h2 {
        font-size: 30px;
    }

    .article-content h3 {
        font-size: 23px;
    }

    .quote-section blockquote {
        font-size: 20px;
    }

    .price {
        font-size: 26px;
    }

    .price-reveal {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .sticky-cta-button {
        padding: 14px 24px;
        font-size: 16px;
    }

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

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .form-section {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .editorial-container {
        padding: 40px 16px 80px;
    }

    .article-hero h1 {
        font-size: 30px;
    }

    .subtitle {
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .service-card {
        padding: 24px;
    }

    .form-section {
        padding: 24px 16px;
    }
}
