/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    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: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

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

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

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

/* Editorial Container (Main Layout Archetype) */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.editorial-header {
    margin-bottom: 3rem;
    text-align: left;
}

.editorial-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.editorial-image {
    margin: 3rem 0;
    width: 100%;
}

.editorial-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.editorial-image-small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-content {
    margin-bottom: 3rem;
}

.editorial-content h2 {
    font-size: 1.875rem;
    margin: 2.5rem 0 1.5rem;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: #334155;
    font-weight: 600;
}

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

.editorial-content ul,
.editorial-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.editorial-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #334155;
}

.editorial-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    font-style: italic;
}

.editorial-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.editorial-quote cite {
    font-size: 1rem;
    color: #64748b;
    font-style: normal;
}

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

.btn-inline {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-secondary {
    background-color: #64748b;
}

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

/* Insight Box */
.insight-box {
    background-color: #eff6ff;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.insight-box h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.insight-box ul {
    margin-left: 1.5rem;
}

.insight-box li {
    margin-bottom: 1rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

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

.service-card.featured {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.service-card.premium {
    border-color: #7c3aed;
    background-color: #faf5ff;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card .badge.premium {
    background-color: #7c3aed;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-card .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-card {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.form-container h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-container > p {
    color: #475569;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    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 {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

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

.checkbox-group a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

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

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

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

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

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.4s ease;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(37,99,235,0.5);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Page Specific Styles */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Services Page */
.services-page .service-detail-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.services-page .service-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-detail-header h2 {
    font-size: 1.875rem;
    color: #1e293b;
    margin: 0;
}

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

.service-intro {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    font-weight: 500;
}

.featured-service {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.premium-service {
    border-color: #7c3aed;
    background-color: #faf5ff;
}

.premium-service .service-price {
    color: #7c3aed;
}

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

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.process-step h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.process-step p {
    color: #475569;
    line-height: 1.6;
}

/* About Page */
.values-section {
    margin: 3rem 0;
    padding: 3rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.value-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #475569;
    line-height: 1.6;
}

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.contact-card h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    margin-bottom: 0.75rem;
    color: #475569;
}

.contact-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card address {
    font-style: normal;
    line-height: 1.8;
}

.contact-card .note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #64748b;
}

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

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-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-page h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.thanks-details {
    background-color: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #bfdbfe;
}

.next-steps {
    text-align: left;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #475569;
}

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

.thanks-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.thanks-info a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.thanks-info a:hover {
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

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

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

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

.legal-section h3 {
    font-size: 1.375rem;
    margin: 1.5rem 0 0.75rem;
    color: #334155;
}

.legal-section h4 {
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
    color: #475569;
}

.legal-section p,
.legal-section li {
    color: #475569;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
}

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

.legal-section address {
    font-style: normal;
    line-height: 1.8;
    margin: 1rem 0;
}

.legal-section a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1d4ed8;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-section p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

/* 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 a {
        padding: 1rem 2rem;
    }

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

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

    .editorial-content p {
        font-size: 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

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

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

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .values-grid {
        gap: 1.5rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .editorial-header h1 {
        font-size: 1.75rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.25rem;
    }
}
