/* 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;
}

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

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

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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;
    font-size: 0.95rem;
    text-align: center;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1e293b;
    transition: all 0.3s ease;
}

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

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2563eb;
}

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

/* Hero Editorial */
.hero-editorial {
    background-color: #ffffff;
    padding: 4rem 2rem 3rem;
}

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 400;
}

.hero-image {
    max-width: 920px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Story Section - Narrow Centered Content */
.story-section {
    background-color: #ffffff;
    padding: 3rem 2rem 5rem;
}

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

.narrow-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
    margin: 3rem 0 1.5rem;
}

.narrow-content h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1e293b;
    margin: 2.5rem 0 1rem;
}

.narrow-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin: 2rem 0 0.75rem;
}

.narrow-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
}

.drop-cap::first-letter {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.5rem 0 0;
    color: #2563eb;
}

/* Inline Images */
.inline-image,
.inline-image-wide {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image-wide {
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: calc(100% + 4rem);
}

.inline-image img,
.inline-image-wide img {
    width: 100%;
}

.inline-image figcaption {
    padding: 1rem;
    background-color: #f8fafc;
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
}

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

.cta-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-link:hover {
    border-bottom-color: #2563eb;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 1.2rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #64748b;
    font-size: 1rem;
}

.testimonial-featured {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.testimonial-featured p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-featured cite {
    font-style: normal;
    font-weight: 600;
    color: #bfdbfe;
    font-size: 1.05rem;
}

/* Numbered List */
.numbered-list {
    margin: 3rem 0;
}

.list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.list-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

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

/* CTA Box Inline */
.cta-box-inline {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #fef3c7;
    border-radius: 12px;
    text-align: center;
}

.cta-box-inline h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

/* Results Grid */
.results-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
}

.result-card {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.result-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.result-card p {
    font-size: 1rem;
    margin: 0;
    color: #475569;
}

/* Services Preview */
.services-preview {
    margin: 4rem 0;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-editorial:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.service-card-editorial.featured {
    border-color: #2563eb;
    border-width: 3px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 1.75rem;
    color: #0f172a;
}

.service-card-editorial p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.duration {
    font-size: 0.95rem;
    color: #64748b;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
}

.urgency-text {
    margin: 0;
    color: #991b1b;
}

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

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

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

.faq-item h4 {
    margin-top: 0;
    color: #0f172a;
}

.faq-item p {
    color: #475569;
}

/* Final CTA Section */
.final-cta-section {
    margin: 4rem 0 3rem;
    text-align: center;
}

/* Form Section Editorial */
.form-section-editorial {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.form-section-editorial h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    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;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.btn-submit,
.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-submit:hover,
.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

/* Trust Footer */
.trust-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.trust-footer p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    padding: 1.25rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

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

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-sticky {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer-minimal {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

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

.footer-copy {
    font-size: 0.9rem;
    color: #64748b;
}

/* Page Header */
.page-header {
    background-color: #ffffff;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

/* About Page Specific */
.principles-list {
    margin: 3rem 0;
}

.principle-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.principle-item h3 {
    margin-top: 0;
    color: #0f172a;
}

.styled-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.styled-list li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #334155;
}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.stat-item p {
    font-size: 1rem;
    color: #475569;
    margin: 0;
}

/* Services Page Specific */
.intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 3rem;
}

.services-detailed {
    margin: 3rem 0;
}

.service-detailed {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-detailed.featured-service {
    border-color: #2563eb;
    border-width: 3px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.badge-featured {
    position: absolute;
    top: -14px;
    left: 3rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.service-header h2 {
    margin: 0;
    flex: 1;
}

.price-tag {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2563eb;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.service-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-result {
    margin: 2rem 0;
    padding: 1.75rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.btn-select-service {
    width: 100%;
    padding: 1.25rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.comparison-note,
.guarantee-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.guarantee-section h3,
.comparison-note h3 {
    margin-top: 0;
}

/* Contact Page Specific */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.contact-detail p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.detail-note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder figcaption {
    padding: 1rem;
    background-color: #f8fafc;
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
}

.contact-cta {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

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

/* Thanks Page Specific */
.thanks-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-message h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-radius: 8px;
}

.selected-service {
    font-size: 1.25rem;
    font-weight: 600;
    color: #166534;
    margin: 0;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
}

.step-content p {
    margin: 0;
}

.thanks-cta {
    margin: 3rem 0;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #334155;
}

.legal-contact,
.legal-notice {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.legal-notice h3,
.legal-contact h3 {
    margin-top: 0;
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.cookie-table td {
    color: #475569;
}

.browser-guides {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-guide {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.browser-guide h4 {
    margin: 0 0 0.5rem 0;
    color: #0f172a;
}

.browser-guide p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

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

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

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

    .narrow-content h3 {
        font-size: 1.35rem;
    }

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

    .inline-image-wide {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .results-grid {
        flex-direction: column;
    }

    .list-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-header {
        flex-direction: column;
    }

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

    .sticky-content {
        flex-direction: column;
        text-align: center;
    }

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

    .stats-section {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .thanks-message h1 {
        font-size: 1.85rem;
    }
}

@media (min-width: 769px) {
    .contact-layout {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}
