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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: none;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3a8eef;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.nav-main {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
    padding: 1.25rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a9eff;
}

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

.hero-left,
.hero-right {
    flex: 1;
    padding: 4rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #4a9eff;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.insight-block {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

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

.insight-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-block p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.split-reverse {
    display: flex;
    min-height: 600px;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.split-content {
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
    justify-content: center;
}

.stat-card {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.testimonial-feature {
    background: #1a1a1a;
    padding: 6rem 2rem;
    color: #ffffff;
}

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

.testimonial-content blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-style: normal;
    color: #b0b0b0;
}

.services-showcase {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    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 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #4a9eff;
}

.approach-split {
    display: flex;
    min-height: 600px;
}

.approach-content,
.approach-visual {
    flex: 1;
}

.approach-content {
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.approach-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-visual {
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.trust-indicators {
    padding: 5rem 2rem;
    background: #ffffff;
}

.trust-indicators h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.trust-item {
    padding: 1.5rem 2.5rem;
    background: #f8f8f8;
    border-radius: 6px;
    font-weight: 600;
    color: #4a4a4a;
}

.form-section {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

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

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

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

.form-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    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: #4a9eff;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4a9eff;
}

.final-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-column a:hover {
    color: #4a9eff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #b0b0b0;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .approach-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .approach-content {
        padding: 3rem 2rem;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .nav-links {
        gap: 1.5rem;
    }
}

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

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

    .hero-left p {
        font-size: 1.1rem;
    }

    .insight-block h2,
    .services-showcase h2 {
        font-size: 2rem;
    }

    .split-content h3,
    .approach-content h3 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}
