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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #2d2d2d;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-strong: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-white);
    font-size: 16px;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    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-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.editorial-layout {
    width: 100%;
}

.hero-editorial {
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.content-story {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-wide {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.content-story em {
    font-style: italic;
    color: var(--text-light);
}

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.story-quote {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--primary-color);
    border-left: 4px solid var(--highlight-color);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background: var(--bg-light);
    font-style: italic;
}

.cta-inline {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.9rem 1.8rem;
    background: var(--highlight-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    color: var(--bg-white);
}

.problem-reveal {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.problem-card {
    background: var(--bg-white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.insight-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.insight-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.insight-image {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.testimonial-flow {
    padding: 5rem 1.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.testimonial-flow h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--bg-white);
    font-weight: 700;
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.services-reveal {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.services-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-item {
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.urgency-section {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.urgency-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-urgent {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-urgent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
    color: var(--bg-white);
}

.form-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
    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);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--highlight-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #d63850;
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 900;
    display: flex;
    justify-content: center;
}

.btn-sticky {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--highlight-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-sticky:hover {
    background: #d63850;
    color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    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;
    text-align: center;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background: var(--highlight-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-header {
    padding: 4rem 1.5rem 3rem;
    background: var(--bg-light);
    text-align: center;
}

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

.team-section,
.values-section,
.results-section {
    padding: 5rem 1.5rem;
}

.values-section {
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 250px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.method-card {
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.method-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.stat-item {
    text-align: center;
    margin: 3rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-detailed {
    padding: 5rem 1.5rem;
}

.service-full {
    margin-bottom: 4rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    padding: 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
}

.service-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-white);
}

.service-body {
    padding: 2rem;
    background: var(--bg-white);
}

.service-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.service-body h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-list {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.service-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-color);
}

.service-list li strong {
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.comparison-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.comparison-card {
    flex: 1 1 280px;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.comparison-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.comparison-card p {
    font-size: 1rem;
    color: var(--text-light);
}

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

.cta-button-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    color: var(--bg-white);
}

.contact-info {
    padding: 5rem 1.5rem;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.faq-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.cta-contact {
    padding: 5rem 1.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
    font-weight: 700;
}

.cta-contact p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-section {
    padding: 6rem 1.5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-message {
    text-align: left;
    margin-bottom: 3rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.next-steps {
    margin: 1.5rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.next-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.legal-page {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

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

.gdpr-item,
.right-item {
    margin-bottom: 2rem;
}

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

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

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

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

.cookies-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-color);
}

.warning-text {
    font-weight: 600;
    color: var(--highlight-color);
}

@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3.5rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .insight-split {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .values-grid {
        flex-wrap: nowrap;
    }

    .comparison-grid {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

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

    .story-quote {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-header h2 {
        font-size: 1.4rem;
    }

    .service-price-large {
        font-size: 1.6rem;
    }

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

@media print {
    .nav-minimal,
    .sticky-cta,
    .cookie-banner,
    .footer {
        display: none;
    }
}