* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

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

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

.hero-left {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.cta-primary.large {
    padding: 20px 50px;
    font-size: 18px;
}

.hero-right {
    background: #0066cc;
    overflow: hidden;
}

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

.intro-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text-block {
    flex: 1.5;
}

.intro-text-block h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #4a4a4a;
    margin-top: 8px;
}

.services-split {
    background: #ffffff;
    padding: 80px 0;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    min-height: 400px;
}

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

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

.service-image {
    overflow: hidden;
}

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

.service-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.cta-service {
    align-self: flex-start;
    background: #0066cc;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #0052a3;
    transform: translateX(5px);
}

.trust-builder {
    background: #1a1a1a;
    color: #ffffff;
    padding: 100px 60px;
}

.trust-builder h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.trust-left,
.trust-right {
    flex: 1;
}

.trust-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-metric {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.metric-value {
    font-size: 52px;
    font-weight: 700;
    color: #00ccff;
    line-height: 1;
}

.metric-desc {
    font-size: 16px;
    margin-top: 12px;
    color: #cccccc;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #00ccff;
    font-weight: 600;
}

.technical-expertise {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

.expertise-grid {
    display: flex;
    gap: 40px;
}

.expertise-item {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-section-sticky {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 80px 60px;
    text-align: center;
    color: #ffffff;
}

.cta-sticky-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-sticky-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.form-section {
    background: #f8f9fa;
    padding: 100px 60px;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    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: #0066cc;
}

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    padding: 16px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.additional-service {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 60px;
}

.service-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.service-highlight h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-highlight p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.9;
}

.service-highlight .price-tag {
    color: #00ccff;
    display: block;
    margin-bottom: 24px;
}

.service-highlight .cta-service {
    background: #0066cc;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00ccff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

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

    .trust-content-split {
        flex-direction: column;
    }

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

    .form-split {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .intro-asymmetric,
    .technical-expertise,
    .form-section,
    .additional-service {
        padding: 60px 30px;
    }

    .service-content {
        padding: 40px 30px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .trust-builder {
        padding: 60px 30px;
    }

    .trust-builder h2 {
        font-size: 32px;
    }

    .cta-section-sticky {
        padding: 60px 30px;
    }

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

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