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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f1f1f1;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --border: #dfe6e9;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #d63850;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.editorial-text {
    padding: 60px 20px;
}

.editorial-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--primary);
    font-weight: 700;
}

.editorial-text h3 {
    font-size: 28px;
    line-height: 1.4;
    margin: 50px 0 20px;
    color: var(--secondary);
    font-weight: 600;
}

.editorial-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text);
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inline-cta {
    margin: 35px 0;
    padding: 25px;
    background: var(--light);
    border-radius: 6px;
    text-align: center;
}

.link-cta {
    font-size: 18px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: var(--primary);
}

.insight-block {
    padding: 70px 20px;
    background: var(--primary);
    color: var(--white);
}

.editorial-quote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 30px;
    margin: 0;
}

.editorial-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--light);
}

.editorial-list {
    margin: 40px 0;
}

.list-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.list-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.list-item p {
    margin: 0;
    font-size: 17px;
    color: var(--text-light);
}

.results-list {
    list-style: none;
    margin: 30px 0;
}

.results-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
}

.results-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 22px;
}

.cta-section {
    padding: 80px 20px;
    background: var(--light);
}

.cta-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta-section > .narrow-column > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary);
}

.btn-select-service.selected {
    background: var(--accent);
}

.form-section {
    padding: 80px 20px;
    background: var(--white);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.form-section > .narrow-column > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    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);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #d63850;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 6px;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text);
}

.testimonial-inline cite {
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: var(--light);
    margin-bottom: 40px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.footer {
    background: var(--primary);
    color: var(--light);
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light);
}

.footer-column a {
    display: block;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--light);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(233, 69, 96, 0.5);
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: var(--accent);
}

.thanks-content .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: var(--secondary);
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--secondary);
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text);
}

.page-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 25px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.page-content a {
    color: var(--accent);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.contact-info {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .editorial-text h2 {
        font-size: 30px;
    }

    .editorial-text h3 {
        font-size: 24px;
    }

    .editorial-text p {
        font-size: 17px;
    }

    .editorial-quote {
        font-size: 20px;
        padding-left: 20px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .final-cta p {
        font-size: 18px;
    }

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