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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}

.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: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.header-asymmetric {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-offset {
    margin-right: auto;
    transform: translateX(-10px);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 10px;
    border-radius: 3px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(52,73,94,0.6) 100%);
}

.hero-content-offset {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-block {
    max-width: 680px;
    margin-left: 8%;
    margin-bottom: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 520px;
}

.hero-cta-floating {
    margin-left: 15%;
}

.btn-primary-offset {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.btn-primary-offset:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.story-section {
    padding: 120px 40px;
    background: #f8f9fa;
}

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

.story-block-left {
    flex: 1;
    padding-left: 60px;
}

.story-block-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a2e;
    line-height: 1.3;
}

.story-block-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.story-image-right {
    flex: 1;
    transform: translateY(-40px);
}

.story-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.insight-offset {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.insight-container {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-content-diagonal {
    background: rgba(255,255,255,0.95);
    padding: 60px 70px;
    border-radius: 12px;
    transform: rotate(-1deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    margin-left: 10%;
}

.insight-content-diagonal h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-content-diagonal p {
    font-size: 19px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

.trust-section-staggered {
    padding: 100px 40px;
    background: #fff;
}

.trust-grid-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-block {
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 10px;
    width: calc(33.333% - 30px);
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-offset-1 {
    transform: translateY(-20px);
}

.trust-offset-2 {
    transform: translateY(20px);
}

.trust-offset-3 {
    transform: translateY(-10px);
}

.trust-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-block p {
    font-size: 16px;
    color: #7f8c8d;
}

.testimonial-diagonal {
    padding: 100px 40px;
    background: #ecf0f1;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-offset {
    background: #fff;
    padding: 45px 50px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 700px;
}

.testimonial-right {
    align-self: flex-end;
    border-left: none;
    border-right: 5px solid #e74c3c;
}

.testimonial-offset p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-offset cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.services-reveal {
    padding: 120px 40px;
    background: #fff;
}

.services-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title-offset {
    font-size: 48px;
    margin-bottom: 70px;
    color: #1a1a2e;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: calc(50% - 20px);
    min-width: 380px;
    max-width: 600px;
    transition: all 0.3s ease;
}

.service-pos-1 {
    transform: translateY(-15px);
}

.service-pos-2 {
    transform: translateY(25px);
}

.service-pos-3 {
    transform: translateY(-10px);
}

.service-pos-4 {
    transform: translateY(20px);
}

.service-pos-5 {
    transform: translateY(5px);
    width: 100%;
    max-width: 650px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

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

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

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-select {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-select:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.service-select.selected {
    background: #3498db;
}

.form-section-offset {
    padding: 120px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #34495e 100%);
}

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

.form-intro-block {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.form-intro-block h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-intro-block p {
    font-size: 18px;
    color: #ecf0f1;
}

.contact-form-asymmetric {
    background: #fff;
    padding: 50px 60px;
    border-radius: 12px;
    transform: rotate(0.5deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-group-offset {
    margin-bottom: 28px;
}

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

.form-group-offset input,
.form-group-offset textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group-offset input[readonly] {
    background: #f8f9fa;
}

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

.btn-submit-offset:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.3);
}

.final-cta-diagonal {
    padding: 100px 40px;
    background: #fff;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(-5%);
}

.final-cta-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.final-cta-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.btn-secondary-offset {
    display: inline-block;
    background: transparent;
    color: #2c3e50;
    border: 3px solid #2c3e50;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary-offset:hover {
    background: #2c3e50;
    color: #fff;
    transform: translateY(-3px);
}

.footer-asymmetric {
    background: #1a1a2e;
    color: #ecf0f1;
    padding: 70px 40px 30px;
}

.footer-grid-irregular {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-col {
    min-width: 220px;
}

.footer-col-1 {
    flex: 1.5;
    transform: translateY(-10px);
}

.footer-col-2 {
    flex: 1;
    transform: translateY(10px);
}

.footer-col-3 {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

    .story-block-left {
        padding-left: 0;
    }

    .story-image-right {
        transform: translateY(0);
    }

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

    .service-card {
        width: 100%;
        max-width: 600px;
        transform: translateY(0);
    }

    .trust-block {
        width: calc(50% - 20px);
    }

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

    .footer-col {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text-block h1 {
        font-size: 38px;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-cta-floating {
        margin-left: 0;
    }

    .services-title-offset {
        font-size: 36px;
    }

    .trust-block {
        width: 100%;
    }

    .testimonial-offset {
        max-width: 100%;
    }

    .contact-form-asymmetric {
        padding: 40px 30px;
        transform: rotate(0);
    }

    .final-cta-content {
        transform: translateX(0);
    }

    .final-cta-content h2 {
        font-size: 36px;
    }
}
