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

:root {
    --primary: #1a5490;
    --secondary: #2c7cc1;
    --accent: #ff6b35;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: var(--dark);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: var(--secondary);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.trust-split {
    display: flex;
    align-items: center;
    background: var(--light);
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
    padding: 4rem 8%;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.benefits-compact {
    list-style: none;
    margin-top: 2rem;
}

.benefits-compact li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-compact li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.services-grid {
    padding: 5rem 5%;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--gray);
}

.service-cards-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image {
    flex: 1;
    min-height: 350px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}

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

.select-service:hover {
    background: #e55a28;
}

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

.cta-block-split {
    display: flex;
    align-items: center;
    padding: 4rem 8%;
    background: var(--primary);
    color: var(--white);
}

.cta-content-wide {
    flex: 2;
}

.cta-content-wide h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.cta-content-wide p {
    font-size: 1.1rem;
}

.cta-action {
    flex: 1;
    text-align: right;
}

.process-split {
    display: flex;
    padding: 5rem 5%;
    gap: 5rem;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray);
}

.process-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-split {
    display: flex;
    background: var(--light);
    padding: 5rem 5%;
    gap: 4rem;
}

.testimonial-block {
    flex: 1;
    padding: 2.5rem;
}

.testimonial-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.form-section-split {
    display: flex;
    padding: 5rem 8%;
    gap: 5rem;
    background: var(--white);
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

.form-container {
    flex: 1;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

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

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

.footer-split {
    display: flex;
    padding: 4rem 5%;
    background: var(--dark);
    color: var(--white);
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 2000;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--secondary);
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.story-split.reverse {
    flex-direction: row-reverse;
}

.story-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 4rem 8%;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.values-split {
    padding: 5rem 8%;
    background: var(--light);
}

.values-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.values-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

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

.value-item p {
    color: var(--gray);
    font-size: 1.05rem;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.team-content {
    flex: 1;
    padding: 4rem 8%;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.team-facts {
    list-style: none;
}

.team-facts li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.team-facts li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.team-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

.numbers-split {
    display: flex;
    padding: 5rem 8%;
    background: var(--primary);
    color: var(--white);
    justify-content: space-around;
}

.number-block {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.number-block p {
    font-size: 1.1rem;
}

.cta-about {
    text-align: center;
    padding: 5rem 8%;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-detail-split {
    padding: 5rem 5%;
}

.service-detail-card {
    display: flex;
    margin-bottom: 5rem;
    gap: 4rem;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-pricing {
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.cta-service {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.approach-split {
    padding: 5rem 8%;
    background: var(--light);
}

.approach-content {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--gray);
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

.approach-step p {
    color: var(--gray);
}

.cta-services {
    text-align: center;
    padding: 5rem 8%;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.contact-info-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.contact-block p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-block a {
    color: var(--primary);
    text-decoration: none;
}

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

.contact-block .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.map-section {
    padding: 3rem 5%;
    background: var(--light);
}

.map-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.faq-split {
    padding: 5rem 8%;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.cta-contact {
    text-align: center;
    padding: 5rem 8%;
    background: var(--light);
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 8%;
    background: var(--light);
}

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

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

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

.thanks-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation {
    text-align: left;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--dark);
}

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

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.thanks-contact {
    text-align: center;
    padding: 4rem 8%;
}

.thanks-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-contact p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.thanks-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--gray);
}

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

.legal-page a {
    color: var(--primary);
    text-decoration: none;
}

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

.legal-page em {
    color: var(--gray);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .hero-split,
    .trust-split,
    .process-split,
    .form-section-split,
    .story-split,
    .team-split,
    .service-detail-card {
        flex-direction: column;
    }

    .trust-split.reverse,
    .story-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-visual,
    .trust-visual,
    .story-visual,
    .team-visual,
    .service-detail-visual {
        height: 400px;
        width: 100%;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .testimonials-split,
    .contact-info-split,
    .footer-split {
        flex-direction: column;
    }

    .cta-block-split {
        flex-direction: column;
        text-align: center;
    }

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

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

    .values-grid,
    .approach-steps {
        flex-direction: column;
    }

    .value-item,
    .approach-step {
        flex: 1 1 100%;
    }

    .service-card {
        flex-direction: column;
    }

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

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