* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a780;
    --text-color: #333;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --border-color: #e0ddd9;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 1rem;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-cookie-accept:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-cookie-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.hero-editorial {
    position: relative;
    margin: 0 -2rem 3rem;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.3;
    max-width: 700px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.story-intro {
    margin: 3rem 0;
    font-size: 1.15rem;
}

.lead-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-intro p {
    margin-bottom: 1.2rem;
}

.story-intro em {
    color: var(--secondary-color);
    font-style: italic;
}

.inline-cta-bar {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.problem-section {
    margin: 4rem 0;
}

.problem-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card {
    background: var(--light-bg);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.insight-reveal {
    margin: 5rem -2rem 4rem;
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

.insight-text {
    padding: 0 2rem;
}

.insight-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--light-bg);
    border-left: 5px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.how-we-work {
    margin: 5rem 0;
}

.how-we-work h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-emphasis {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.cta-emphasis h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--white);
    transform: scale(1.05);
}

.trust-section {
    margin: 5rem 0;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.expectations-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expectation-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expectation-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.expectation-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.expectation-text p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-block {
    margin: 5rem 0;
    padding: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    color: var(--accent-color);
    font-size: 1rem;
}

.services-preview {
    margin: 5rem 0;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.service-card-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: var(--shadow);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--secondary-color);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.btn-select-service {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.urgency-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    font-size: 1.05rem;
}

.form-section {
    margin: 5rem 0;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.final-note {
    margin: 5rem 0 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--secondary-color);
}

.final-note p {
    margin-bottom: 1rem;
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.6;
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-weight: bold;
}

.sticky-cta-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 0 1.5rem 3rem;
    }

    .hero-editorial {
        margin: 0 -1.5rem 2rem;
        height: 60vh;
    }

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

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

    .nav-links {
        gap: 1rem;
    }

    .story-intro {
        font-size: 1.05rem;
    }

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

    .problem-section h2,
    .insight-text h2,
    .how-we-work h2,
    .trust-section h2,
    .services-preview h2,
    .form-section h2 {
        font-size: 1.6rem;
    }

    .process-step {
        padding-left: 4rem;
    }

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

    .insight-reveal {
        margin: 4rem -1.5rem 3rem;
    }

    .insight-text {
        padding: 0 1.5rem;
    }

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

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

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

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-select-service {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .editorial-container {
        max-width: 700px;
    }
}
