* {
    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: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

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

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

.btn-cookie.accept {
    background: #3498db;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #2980b9;
}

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

.btn-cookie.reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.navigation {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    border-left: 1px solid #e1e8ed;
    padding-left: 20px;
    font-style: italic;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 0 0 55%;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 520px;
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    background: #2c3e50;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

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

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

.intro-text-block h2 {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.intro-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-visual-accent {
    flex: 0 0 420px;
    background: #f8f9fa;
}

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

.services-preview-asymmetric {
    background: #ffffff;
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 40px;
}

.section-header-offset h2 {
    font-size: 46px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border: 1px solid #e1e8ed;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card.large-card {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-card.large-card .service-image {
    flex: 0 0 50%;
}

.service-card.large-card > div:last-child {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-image {
    height: 280px;
    overflow: hidden;
    background: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 24px 12px 24px;
}

.service-card.large-card h3 {
    margin: 0 0 12px 0;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 24px 16px 24px;
}

.service-card.large-card p {
    margin: 0 0 16px 0;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 20px 24px;
}

.service-card.large-card .service-price {
    margin: 0 0 20px 0;
}

.cta-service {
    margin: 0 24px 24px 24px;
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card.large-card .cta-service {
    margin: 0;
    align-self: flex-start;
}

.cta-service:hover {
    background: #2980b9;
    transform: translateX(4px);
}

.trust-section-diagonal {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 80px;
    margin: 80px 0;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}

.trust-metrics {
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.metric {
    flex: 1;
}

.metric-number {
    font-size: 64px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 18px;
    color: #ecf0f1;
}

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

.approach-image {
    flex: 0 0 480px;
    background: #ecf0f1;
    height: 520px;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.form-section-asymmetric {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 80px;
    margin: 80px 0 0 0;
}

.form-container-offset {
    max-width: 680px;
    margin: 0 0 0 auto;
    padding-right: 100px;
}

.form-container-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-container-offset p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.consultation-form {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #e1e8ed;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    background: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section h3 {
    font-size: 22px;
}

.footer-section h4 {
    font-size: 18px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 30px;
    background: #2c3e50;
    border-left: 4px solid #3498db;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 14px;
}

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

    .hero-content-offset {
        flex: 1;
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image-diagonal img {
        clip-path: none;
    }

    .offset-intro,
    .approach-offset {
        flex-direction: column;
        padding: 0 30px;
        gap: 40px;
    }

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

    .service-card,
    .service-card.large-card {
        flex: 1 1 100%;
        flex-direction: column;
    }

    .service-card.large-card .service-image {
        flex: 0 0 280px;
    }

    .trust-metrics {
        flex-direction: column;
        gap: 30px;
    }

    .form-container-offset {
        padding-right: 0;
    }

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