/* 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: #2c3e50;
    background-color: #ffffff;
}

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a67d8;
}

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

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

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

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 100%;
}

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

/* Hero Section */
.hero-editorial {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-editorial h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Sections */
section {
    padding: 4rem 0;
}

.story-intro,
.problem-section,
.insight-section,
.transformation-section,
.proof-section,
.methodology-section,
.services-preview,
.urgency-section,
.final-cta-section,
.closing-section {
    border-bottom: 1px solid #e2e8f0;
}

.story-intro {
    background-color: #f7fafc;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

/* Inline Images */
.inline-image {
    margin: 2rem 0;
    border-radius: 8px;
}

/* Quote Block */
.quote-block {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #4a5568;
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Steps List */
.steps-list {
    margin: 2rem 0;
}

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

.step-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0;
}

/* Methodology List */
.methodology-list {
    list-style: none;
    margin: 2rem 0;
}

.methodology-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.methodology-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Service Cards - Editorial Style */
.service-card-editorial {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card-editorial.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.badge-popular {
    display: inline-block;
    background-color: #667eea;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card-editorial h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin: 1.5rem 0;
}

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

.btn-primary,
.btn-service,
.btn-submit {
    background-color: #667eea;
    color: #ffffff;
}

.btn-primary:hover,
.btn-service:hover,
.btn-submit:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    margin: 0.5rem;
}

.btn-primary-large {
    background-color: #667eea;
    color: #ffffff;
}

.btn-primary-large:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.btn-secondary-large {
    background-color: #ffffff;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary-large:hover {
    background-color: #f7fafc;
}

.btn-text-link {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 1rem 0;
}

.btn-text-link:hover {
    color: #5a67d8;
}

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

.cta-section {
    text-align: center;
    padding: 4rem 0;
}

/* Forms */
.editorial-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

/* Closing Section */
.closing-section {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.closing-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.signature {
    font-style: italic;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

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

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

.footer-section a {
    color: #a0aec0;
}

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

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

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

.sticky-cta-btn {
    display: block;
    background-color: #667eea;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #5a67d8;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
}

/* Page Header */
.page-header {
    padding: 4rem 2rem 3rem;
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

.header-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    font-weight: 400;
}

/* About Page Specific */
.about-intro,
.mission-section,
.team-section,
.values-section,
.results-section,
.approach-section {
    padding: 3rem 0;
}

.team-member {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.team-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item {
    margin: 2rem 0;
}

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

.results-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.results-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Services Page Specific */
.services-intro,
.service-detail,
.comparison-section,
.faq-section,
.form-section {
    padding: 3rem 0;
}

.service-card-full {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    background-color: #ffffff;
}

.service-card-full.featured-service {
    border-color: #667eea;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.service-tagline {
    font-size: 1.125rem;
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content ul li {
    margin-bottom: 0.75rem;
}

.service-includes {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #edf2f7;
    border-radius: 6px;
    font-size: 0.95rem;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
}

.price-note {
    font-size: 0.95rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

.sprint-week {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #667eea;
}

.sprint-week h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.comparison-guide {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.comparison-guide ul {
    margin-top: 1rem;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

/* Contact Page Specific */
.contact-intro,
.contact-info-section,
.working-with-section,
.who-we-work-with,
.faq-contact,
.newsletter-section {
    padding: 3rem 0;
}

.contact-card {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-item {
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.125rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

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

.process-step {
    margin: 2rem 0;
}

.ideal-client,
.not-ideal {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 8px;
}

.ideal-client {
    background-color: #f0fff4;
    border-left: 4px solid #48bb78;
}

.not-ideal {
    background-color: #fff5f5;
    border-left: 4px solid #fc8181;
}

.ideal-client ul,
.not-ideal ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

.thanks-content {
    text-align: left;
    margin: 3rem 0;
}

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

.thanks-steps li {
    margin-bottom: 1rem;
}

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

.thanks-suggestions li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.thanks-suggestions li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.thanks-note {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #edf2f7;
    border-radius: 6px;
    text-align: center;
}

.thanks-actions {
    margin-top: 3rem;
}

.selected-service-highlight {
    background-color: #f0fff4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
    font-size: 1.125rem;
    margin: 2rem 0;
}

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

.update-date {
    color: #718096;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin: 3rem 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: #4a5568;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-section li {
    margin-bottom: 0.75rem;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-minimal {
        padding: 1rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .hero-editorial {
        padding: 4rem 1rem 3rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    section {
        padding: 2rem 0;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

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

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

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 1rem 2rem;
    }

    .cookie-content {
        padding: 0;
    }

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

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .cookie-buttons button {
        width: 100%;
    }
}