/* CSS 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;
    overflow-x: hidden;
}

/* Editorial Story Archetype - Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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: #60a5fa;
}

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

/* Navigation - Editorial Style */
.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

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

.nav-menu a {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a252f;
    text-decoration: none;
}

/* Editorial Container - Narrow Centered Text */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Editorial */
.hero-editorial {
    text-align: center;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 0;
}

/* Lead Text */
.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
}

/* Story Sections */
.story-intro,
.problem-section,
.insight-section,
.services-reveal,
.trust-section,
.urgency-section,
.form-section,
.final-cta {
    margin-bottom: 4rem;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    overflow: hidden;
    border-radius: 4px;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Highlight Box */
.highlight-box {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-style: italic;
}

/* Story Block (Testimonial Inline) */
.story-block {
    background-color: #f9fafb;
    border-left: 3px solid #6b7280;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.story-block strong {
    font-style: normal;
    color: #1a252f;
}

/* Service Editorial (Product Presentation) */
.service-editorial {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-editorial:last-of-type {
    border-bottom: none;
}

.service-editorial h3 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.price-reveal {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.price-reveal .price {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
}

.price-reveal .price-note {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Testimonial Editorial */
.testimonial-editorial {
    background-color: #f3f4f6;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-editorial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4b5563;
}

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

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

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

/* Final Message */
.final-message {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
    color: #1a252f;
}

/* CTA Inline */
.cta-inline {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #1d4ed8;
    text-decoration: none;
}

/* Form Section */
.editorial-form {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    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: #2563eb;
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #6b7280;
    color: #ffffff;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

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

.btn-sticky {
    display: block;
    background-color: #059669;
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

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

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

.footer-col a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.875rem;
}

/* Page Specific Styles */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-style: italic;
}

/* About Page */
.about-intro,
.philosophy-section,
.values-section,
.team-section,
.approach-section,
.commitment-section,
.cta-section {
    margin-bottom: 3rem;
}

.value-block,
.process-step {
    margin-bottom: 2rem;
}

/* Services Page */
.services-intro,
.service-detailed,
.approach-section,
.guarantee-section,
.cta-final {
    margin-bottom: 3rem;
}

.price-detail {
    font-size: 2.25rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1.5rem;
}

.price-detail span {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.service-detailed ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detailed li {
    margin-bottom: 0.5rem;
}

.process-timeline .timeline-step {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #2563eb;
}

/* Contact Page */
.contact-intro,
.contact-details,
.visit-section,
.appointment-section,
.online-consultation,
.faq-contact,
.data-protection-note,
.cta-contact {
    margin-bottom: 3rem;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.info-note {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.directions-list {
    margin-left: 1.5rem;
}

.directions-list li {
    margin-bottom: 0.75rem;
}

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

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

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-header {
    margin-bottom: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content,
.meanwhile-section,
.preparation-section,
.contact-reminder,
.thanks-cta {
    margin-bottom: 3rem;
    text-align: left;
}

.confirmation-box {
    background-color: #f0fdf4;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.next-step {
    margin-bottom: 1.5rem;
}

.service-info {
    background-color: #eff6ff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.selected-service {
    font-weight: 700;
    color: #1a252f;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: left;
}

.resource-link:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.resource-link strong {
    display: block;
    color: #1a252f;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.resource-link p {
    color: #6b7280;
    margin: 0;
}

.preparation-list {
    margin-left: 1.5rem;
}

.preparation-list li {
    margin-bottom: 0.75rem;
}

.contact-quick {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 4px;
}

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

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

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

.legal-section ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

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

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

.cookie-table thead {
    background-color: #f3f4f6;
}

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

.cookie-table th {
    font-weight: 600;
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.back-link a {
    color: #6b7280;
    font-weight: 500;
}

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

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .price-reveal {
        flex-direction: column;
        gap: 0.25rem;
    }

    .price-reveal .price {
        font-size: 1.75rem;
    }

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

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

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

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

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

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

    .price-detail {
        font-size: 1.75rem;
    }

    .resource-links {
        gap: 0.75rem;
    }
}