/* Reset & 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: #fafafa;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta-button-sticky {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-sticky:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Editorial Content - Main Container */
.editorial-content {
    background-color: #ffffff;
}

/* Narrow Text Container - Editorial Style */
.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: relative;
    z-index: 10;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.opening-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

/* Images in Content */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

.inline-image-full {
    margin: 3rem 0;
    width: 100%;
    border-radius: 4px;
}

/* Pullquote */
.pullquote {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.pullquote p {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

/* Principle Blocks */
.principle-block {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-left: 3px solid #1a1a1a;
    padding-left: 1.5rem;
}

.principle-block h3 {
    margin-top: 0;
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    min-width: 60px;
}

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

.step-content p {
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-weight: 500;
}

/* Services & Pricing */
.service-item {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.service-header h3 {
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.service-benefits li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #3a3a3a;
}

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

.service-ideal {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 1.5rem;
}

/* Urgency Box */
.urgency-box {
    background-color: #fffbf0;
    border: 2px solid #f0e6d0;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.urgency-box h3 {
    margin-top: 0;
    color: #8a6d3b;
}

.urgency-box p {
    margin-bottom: 0.8rem;
    color: #5a4d2b;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

/* Forms */
.contact-form {
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #1a1a1a;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

/* CTAs */
.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link-inline {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.cta-link-inline:hover {
    color: #4a4a4a;
}

/* Case Study */
.case-intro {
    font-size: 1.15rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4a4a4a;
}

/* Contact Blocks */
.contact-block {
    margin: 2rem 0;
}

.contact-block h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.contact-block p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.contact-block a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-detail {
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #2a2a2a;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

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

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

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content li {
    margin: 0.5rem 0;
    color: #4a4a4a;
}

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

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

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

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

.footer-section p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin: 0.6rem 0;
}

.footer-section ul li a {
    font-size: 0.95rem;
    color: #d0d0d0;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #8a8a8a;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .cta-button-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .narrow-text {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .pullquote p {
        font-size: 1.2rem;
    }

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

    .step-number {
        font-size: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .cookie-content {
        padding: 0.5rem;
    }

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

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

@media (min-width: 769px) and (max-width: 1024px) {
    .narrow-text {
        max-width: 600px;
        padding: 2.5rem 2rem;
    }

    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1400px) {
    .narrow-text {
        max-width: 720px;
    }
}