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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #334155;
    --border: #e2e8f0;
    --accent: #06b6d4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.main-nav {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5rem;
    background: var(--dark);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-left {
    flex: 1;
    padding: 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.intro-left h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.25;
}

.intro-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.intro-right {
    flex: 1;
    overflow: hidden;
}

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

.value-cards {
    padding: 6rem 3rem;
    background: #ffffff;
}

.value-cards h2 {
    text-align: center;
    font-size: 2.75rem;
    color: var(--dark);
    margin-bottom: 4rem;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--light);
    border-left: 4px solid var(--primary-color);
}

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

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

.services-split {
    display: flex;
    background: var(--dark);
    color: #ffffff;
}

.services-left {
    flex: 0 0 35%;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
}

.services-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.services-left p {
    font-size: 1.15rem;
    color: #cbd5e1;
}

.services-right {
    flex: 1;
    padding: 3rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.service-item.selected {
    border-color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: #94a3b8;
    font-size: 0.95rem;
}

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

.contact-form-split {
    display: flex;
    min-height: 75vh;
}

.form-left {
    flex: 1;
    overflow: hidden;
}

.form-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-right {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-right h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2.5rem;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
}

.form-group input {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.service-display {
    padding: 1rem 1.2rem;
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-weight: 500;
}

.btn-submit {
    padding: 1.1rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.testimonials {
    padding: 6rem 3rem;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.75rem;
    color: var(--dark);
    margin-bottom: 4rem;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    padding: 2.5rem;
    background: var(--light);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.process-split {
    display: flex;
    background: var(--light);
}

.process-left {
    flex: 1;
    padding: 5rem 4rem;
}

.process-left h2 {
    font-size: 2.75rem;
    color: var(--dark);
    margin-bottom: 3rem;
}

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

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text);
    font-size: 1.05rem;
}

.process-right {
    flex: 1;
    overflow: hidden;
}

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

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

.cta-content h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.main-footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 4rem 3rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-btn {
    display: block;
    background: var(--accent);
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #cbd5e1;
}

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

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

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

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

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

.btn-reject:hover {
    border-color: #64748b;
    color: #cbd5e1;
}

@media (max-width: 968px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .services-split,
    .contact-form-split,
    .process-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .services-left,
    .form-right,
    .process-left {
        padding: 3rem 2rem;
    }

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

    .cards-container,
    .testimonial-grid {
        flex-direction: column;
    }

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

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

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .value-cards h2,
    .testimonials h2,
    .process-left h2 {
        font-size: 2rem;
    }

    .cta-final h2 {
        font-size: 2.25rem;
    }
}