/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fdfdfb;
}

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

a {
    color: #3d5a5c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a8285;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background: #5a8285;
    color: #fff;
}

.btn-accept:hover {
    background: #4a7073;
}

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

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

/* Navigation - Floating Minimal */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e3;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.nav-links a:hover {
    color: #3d5a5c;
}

/* Editorial Content Container */
.editorial-content {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

/* Narrow Content for Editorial Style */
.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.hero-text-center {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-text-center h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

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

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

/* Story Sections */
.story-intro,
.problem-section,
.story-development,
.trust-building,
.benefits-reveal,
.about-development,
.mission-section,
.services-intro,
.contact-info-section {
    padding: 3rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.65;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.narrow-content p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
    color: #3a3a3a;
}

.narrow-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.narrow-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.narrow-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

/* Visual Break Images */
.visual-break {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.visual-break img {
    width: 100%;
    border-radius: 4px;
}

.image-caption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* Problem List */
.problem-list {
    margin: 1.5rem 0 1.5rem 1.8rem;
    list-style: none;
}

.problem-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #3a3a3a;
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3d5a5c;
    font-weight: 900;
    font-size: 1.3rem;
}

/* Inline CTA */
.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    color: #3d5a5c;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid #3d5a5c;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #5a8285;
    border-bottom-color: #5a8285;
}

/* Quote Block */
.quote-block {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: #f7f7f2;
    border-left: 4px solid #3d5a5c;
}

.quote-block blockquote {
    margin: 0;
}

.quote-block p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.quote-block cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

/* Inline Image Wrapper */
.inline-image-wrapper {
    margin: 2.5rem 0;
}

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

/* Process Cards */
.process-card {
    margin: 2rem 0;
    padding: 1.8rem;
    background: #f9f9f6;
    border-radius: 4px;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.process-card p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.emphasis-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f4f4;
    border-radius: 4px;
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 3rem 0;
    background: #f7f7f2;
    margin: 3rem 0;
}

.testimonial-card {
    margin: 2rem 0;
    padding: 1.8rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
}

/* Service Editorial List */
.service-editorial-list {
    margin: 3rem 0;
}

.service-item-editorial {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.service-image {
    margin-bottom: 1.5rem;
}

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

.service-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a8285;
    font-weight: 700;
}

.service-details {
    font-style: italic;
    color: #666;
    margin: 1.5rem 0;
}

.price-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f4f4;
    border-radius: 4px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3d5a5c;
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Buttons */
.btn-service-select,
.btn-submit-form,
.btn-primary,
.btn-final-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #3d5a5c;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service-select:hover,
.btn-submit-form:hover,
.btn-primary:hover,
.btn-final-cta:hover {
    background: #2d484a;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #3d5a5c;
    border: 2px solid #3d5a5c;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3d5a5c;
    color: #fff;
}

/* Urgency Block */
.urgency-block {
    padding: 3rem 0;
}

.urgency-card {
    padding: 2rem;
    background: #fff8e6;
    border-left: 4px solid #d4a44a;
    border-radius: 4px;
}

.urgency-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 1rem;
}

/* Order Form Editorial */
.order-section {
    padding: 3rem 0;
    background: #f7f7f2;
    margin: 3rem 0;
}

.order-form-editorial {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.btn-final-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* FAQ Editorial */
.faq-editorial {
    padding: 3rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e3;
}

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

.faq-item h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

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

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

.btn-sticky {
    display: block;
    padding: 1rem 1.8rem;
    background: #3d5a5c;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

/* Footer */
.footer-minimal {
    padding: 2rem 0;
    background: #2c2c2c;
    color: #ccc;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Page Header Editorial */
.page-header-editorial {
    padding: 3rem 0 2rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

/* About Page Specific */
.quote-section-about {
    padding: 3rem 0;
    background: #f7f7f2;
    margin: 3rem 0;
}

.large-quote {
    text-align: center;
}

.large-quote p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #2c2c2c;
    font-style: italic;
    font-weight: 500;
}

.values-section,
.team-approach {
    padding: 3rem 0;
}

.value-block {
    margin: 2.5rem 0;
}

.value-block h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.cta-about {
    padding: 3rem 0;
    text-align: center;
}

/* Services Page */
.services-guarantee {
    padding: 3rem 0;
    background: #f7f7f2;
    margin: 3rem 0;
}

/* Contact Page */
.contact-details {
    padding: 2rem 0;
}

.contact-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f9f9f6;
    border-radius: 4px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: #3d5a5c;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-faq {
    padding: 3rem 0;
}

.contact-cta {
    padding: 3rem 0;
    text-align: center;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.text-center {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #5a8285;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f7f7f2;
    border-radius: 4px;
}

.thanks-details p {
    margin-bottom: 0.5rem;
}

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

.step-item {
    margin: 1.5rem 0;
}

.step-item h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #555;
    margin-bottom: 0;
}

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

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff8e6;
    border-left: 4px solid #d4a44a;
    border-radius: 4px;
    text-align: left;
}

.thanks-note p {
    margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.update-date {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    margin-top: 1.2rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.8rem;
}

.legal-section li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.gdpr-purpose {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: #f9f9f6;
    border-radius: 4px;
}

.cookie-type {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9f9f6;
    border-radius: 4px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e3;
}

.cookie-table th {
    background: #f7f7f2;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    font-size: 0.95rem;
}

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

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

    .nav-links {
        gap: 1.2rem;
    }

    .hero-text-center h1 {
        font-size: 2.2rem;
    }

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

    .narrow-content h2 {
        font-size: 1.7rem;
    }

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

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

    .quote-block {
        padding: 1.5rem;
    }

    .quote-block p {
        font-size: 1.15rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

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

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

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

    .cookie-content {
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 0.9rem;
        gap: 1rem;
    }

    .hero-text-center h1 {
        font-size: 1.9rem;
    }

    .narrow-content h2 {
        font-size: 1.5rem;
    }
}