* {
    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;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-asymmetric {
    margin-top: 100px;
    min-height: 85vh;
    display: flex;
    position: relative;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.hero-visual-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-color: #e8f1f8;
}

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

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

.intro-narrow {
    flex: 1;
}

.intro-lead {
    font-size: 28px;
    line-height: 1.5;
    color: #2a2a2a;
    font-weight: 300;
}

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

.stat-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0066cc;
}

.stat-label {
    font-size: 15px;
    color: #6c757d;
    margin-top: 5px;
}

.services-grid {
    padding: 100px 60px;
    background: #fafbfc;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header-left p {
    font-size: 18px;
    color: #6c757d;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-large {
    flex: 1 1 calc(60% - 15px);
    flex-direction: row;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
}

.service-small {
    flex: 1 1 calc(33.333% - 20px);
}

.service-image {
    background-color: #e8f1f8;
    height: 250px;
    overflow: hidden;
}

.service-large .service-image {
    width: 45%;
    height: auto;
}

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

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #4a4a4a;
    margin-bottom: 25px;
    flex: 1;
}

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

.btn-select {
    padding: 14px 28px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select:hover {
    background: #0052a3;
    transform: scale(1.02);
}

.process-diagonal {
    padding: 120px 60px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #ffffff;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 80px 0;
}

.process-diagonal h2 {
    font-size: 42px;
    margin-bottom: 70px;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    flex: 1;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    opacity: 0.3;
    display: block;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    opacity: 0.9;
    line-height: 1.6;
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-visual {
    width: 40%;
    background-color: #e8f1f8;
    position: relative;
}

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

.form-container {
    width: 60%;
    padding: 80px 100px;
    background: #f8f9fa;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.form-container > p {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 18px 40px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.trust-block {
    padding: 100px 60px;
    background: #ffffff;
}

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

.testimonials-stagger {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    position: relative;
}

.testimonial:nth-child(2) {
    margin-top: 40px;
}

.testimonial:nth-child(3) {
    margin-top: 80px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 15px;
    color: #6c757d;
    font-weight: 600;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #6c757d;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #0066cc;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.btn-reject {
    background: #4a4a4a;
    color: #ffffff;
}

.btn-accept:hover,
.btn-reject:hover {
    transform: scale(1.05);
}

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

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-visual-block {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
    }

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

    .step {
        flex: 1 1 calc(50% - 20px);
    }

    .form-section-split {
        flex-direction: column;
    }

    .form-visual,
    .form-container {
        width: 100%;
    }

    .form-visual {
        height: 300px;
    }

    .form-container {
        padding: 60px 40px;
    }

    .testimonials-stagger {
        flex-direction: column;
    }

    .testimonial:nth-child(2),
    .testimonial:nth-child(3) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

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

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

    .service-large .service-image {
        width: 100%;
        height: 250px;
    }

    .process-diagonal {
        clip-path: none;
    }

    .process-steps {
        flex-direction: column;
    }

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

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