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

:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --dark-bg: #1f2937;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --accent: #10b981;
    --danger: #ef4444;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-cookie-accept {
    background: var(--accent);
    color: white;
}

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

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

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

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

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

.logo-block {
    transform: skew(-5deg);
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: block;
    transform: skew(5deg);
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    transform: translateX(-30px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: rotate(-3deg) translateY(20px);
}

.hero-image-overlap img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.intro-offset {
    padding: 6rem 2rem;
    background: white;
}

.offset-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-narrow {
    flex: 1.5;
    padding-left: 4rem;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.visual-accent {
    flex: 1;
    transform: translateY(-40px) rotate(2deg);
}

.visual-accent img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-amplify {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.problem-amplify::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1));
    transform: skewX(-15deg);
}

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

.problem-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card.offset-up {
    transform: translateY(-30px);
}

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

.problem-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.cta-secondary:hover {
    background: white;
    color: var(--dark-bg);
}

.insight-overlap {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.insight-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-image {
    flex: 1;
    transform: translateX(-50px);
}

.insight-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.insight-text {
    flex: 1.2;
    padding-right: 3rem;
}

.insight-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
}

.insight-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.trust-section {
    padding: 5rem 2rem;
    background: white;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.stats-asymmetric {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-block.offset-diagonal {
    transform: translateY(-20px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.testimonials-scattered {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.testimonials-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card.position-1 {
    transform: rotate(-1deg);
}

.testimonial-card.position-2 {
    transform: translateY(-20px) rotate(1deg);
}

.testimonial-card.position-3 {
    transform: rotate(-0.5deg);
}

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

.testimonial-author {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-reveal {
    padding: 7rem 2rem;
    background: white;
}

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

.services-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card.offset-card {
    transform: rotate(-0.5deg);
}

.service-card.offset-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #1d4ed8;
}

.form-section-offset {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

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

.form-intro-block {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro-block h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
}

.form-intro-block p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-asymmetric {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-0.5deg);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.urgency-block {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-urgent {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-urgent:hover {
    transform: scale(1.05);
}

.final-trust {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.trust-badges {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.badge-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.badge-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.footer-asymmetric {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

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

    .hamburger {
        display: flex;
    }

    .hero-offset-container {
        flex-direction: column;
    }

    .hero-text-block {
        transform: none;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-image-overlap {
        transform: none;
        width: 100%;
    }

    .offset-wrapper {
        flex-direction: column;
    }

    .intro-narrow {
        padding-left: 0;
    }

    .visual-accent {
        transform: none;
    }

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

    .problem-card.offset-up {
        transform: none;
    }

    .insight-blocks {
        flex-direction: column;
    }

    .insight-image {
        transform: none;
    }

    .insight-text {
        padding-right: 0;
    }

    .stats-asymmetric {
        gap: 2rem;
    }

    .stat-block.offset-diagonal {
        transform: none;
    }

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

    .testimonial-card.position-1,
    .testimonial-card.position-2,
    .testimonial-card.position-3 {
        transform: none;
    }

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

    .service-card,
    .service-card.offset-card {
        transform: none;
        flex: 1 1 100%;
    }

    .contact-form-asymmetric {
        transform: none;
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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