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

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --border-color: #e0e0e0;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 17px;
    background: var(--white);
}

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

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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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-size: 0.95rem;
    font-weight: 500;
}

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

.hero-editorial {
    padding: 4rem 1.5rem 3rem;
    background: var(--light-gray);
}

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

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

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

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

.content-narrow h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
}

.content-narrow ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.content-narrow ul li {
    margin-bottom: 0.8rem;
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-block;
}

.split-image-content {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background: var(--white);
}

.content-block {
    max-width: 680px;
    margin: 0 auto 2rem;
}

.content-block h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.insight-section {
    background: #f9f9f9;
    padding: 3rem 1.5rem;
}

.testimonial-inline {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-inline p {
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.services-cards {
    padding: 4rem 1.5rem;
    background: var(--white);
}

.section-title-centered {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.btn-select-service {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

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

.visual-break {
    max-width: 100%;
    margin: 3rem 0;
}

.visual-break img {
    width: 100%;
    object-fit: cover;
}

.trust-section {
    background: var(--light-gray);
}

.form-section {
    padding: 4rem 1.5rem;
    background: #fafafa;
}

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

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

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.main-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.form-field {
    margin-bottom: 1.8rem;
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-field input[readonly] {
    background: var(--light-gray);
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: var(--primary-color);
}

.final-cta {
    text-align: center;
    padding: 4rem 1.5rem;
}

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

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    margin-top: 1.5rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

.site-footer {
    background: var(--dark-bg);
    color: #ccc;
    padding: 3rem 1.5rem 2rem;
    margin-top: 4rem;
}

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

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

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 99;
    display: none;
}

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

.sticky-cta-button {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

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

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

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

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

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

.btn-cookie-accept:hover {
    background: #2980b9;
}

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

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

.page-header {
    padding: 4rem 1.5rem 2rem;
    background: var(--light-gray);
}

.about-page .approach-section,
.about-page .team-section {
    padding: 4rem 1.5rem;
    background: var(--white);
}

.approach-cards {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-card {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 6px;
}

.approach-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.full-width-image img {
    width: 100%;
    object-fit: cover;
}

.final-section {
    padding: 3rem 1.5rem;
}

.cta-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.services-page .services-detailed {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.service-detail {
    margin-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 3rem;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    margin-bottom: 2rem;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: 700;
}

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

.service-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.service-body ul li {
    margin-bottom: 0.8rem;
}

.process-section {
    padding: 4rem 1.5rem;
    background: var(--light-gray);
}

.process-steps {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.platforms-section {
    padding: 4rem 1.5rem;
}

.platform-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    line-height: 1.9;
}

.platform-list li {
    margin-bottom: 0.8rem;
}

.contact-page .contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    max-width: 680px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

.contact-detail p {
    line-height: 1.7;
    color: var(--text-color);
}

.contact-detail a {
    color: var(--accent-color);
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-text {
    max-width: 680px;
}

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

.contact-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.contact-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.thanks-page .thanks-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.thanks-page .content-narrow {
    text-align: left;
    padding-top: 2rem;
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-page .last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-page p {
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 3rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .split-image-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .content-block {
        flex: 1;
        margin-bottom: 0;
    }

    .content-image {
        flex: 0 0 45%;
    }

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

    .approach-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-info,
    .contact-text {
        flex: 1;
    }

    .cta-row {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-text-narrow h1 {
        font-size: 3.5rem;
    }

    .sticky-cta {
        display: block;
    }
}
