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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --text-gray: #666;
    --bg-light: #ffffff;
    --bg-alt: #f9f9f9;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--highlight-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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 {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

.btn-cookie {
    background: var(--highlight-color);
    color: var(--text-light);
}

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

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

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

.nav-minimal {
    background: var(--bg-light);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-full {
    width: 100%;
    padding: 0;
}

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

.content-split > * {
    flex: 1;
    min-width: 300px;
}

.hero-editorial {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-light) 100%);
}

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

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.story-section,
.story-section-alt {
    padding: 4rem 2rem;
}

.story-section-alt {
    background: var(--bg-alt);
}

.story-section h2,
.story-section-alt h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary-color);
}

.story-section h3,
.story-section-alt h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.story-section p,
.story-section-alt p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 2rem;
}

.story-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.8rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-alt);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.insight-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid var(--border-color);
}

.insight-box h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.phase-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.phase-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.phase-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.phase-card h3 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.phase-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.trust-section {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

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

.trust-logos {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 8px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--text-dark);
}

.cta-inline {
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.cta-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 0;
}

.service-card-editorial {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card-editorial.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-card-editorial h4 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-card-editorial li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1.5rem 0 0.5rem;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.testimonials-section {
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-light);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    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: var(--accent-color);
}

.form-notice {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 1.5rem 0;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-section {
    padding: 3rem 2rem;
    background: var(--bg-alt);
    text-align: center;
}

.final-note {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(15, 76, 117, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.5);
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
    display: block;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.page-header {
    padding: 4rem 2rem;
    background: var(--bg-alt);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.approach-list {
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}

.approach-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-list {
    margin-top: 2rem;
}

.team-member {
    margin-bottom: 2.5rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.stat-list {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.services-page {
    padding: 2rem 0;
}

.faq-section {
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.faq-section h2 {
    margin-bottom: 2.5rem;
    text-align: center;
}

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

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.contact-info {
    flex: 0 0 350px;
}

.contact-form-wrapper {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-note {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.map-section {
    padding: 0;
    margin-top: 3rem;
}

.map-placeholder {
    background: var(--bg-alt);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--text-light);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.05rem;
}

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

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-steps {
    margin-left: 2rem;
    text-align: left;
}

.thanks-steps li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-contact {
    margin-top: 3rem;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.legal-page {
    padding: 3rem 0;
}

.legal-updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-alt);
    font-weight: 600;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

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

    .nav-menu a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

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

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

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

    .trust-logos {
        flex-direction: column;
    }

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

    .contact-info {
        flex: 1;
    }

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

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

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

    .thanks-steps {
        margin-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .content-narrow,
    .content-wide {
        padding: 0 1rem;
    }

    .hero-editorial {
        padding: 3rem 1rem 2rem;
    }

    .story-section,
    .story-section-alt {
        padding: 2.5rem 1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

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

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

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }
}