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

:root {
    --primary: #2d3142;
    --secondary: #4f5d75;
    --accent: #bfc0c0;
    --highlight: #ef8354;
    --light: #ffffff;
    --dark: #1a1a1a;
    --gray: #f4f4f4;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.cookie-content a {
    color: var(--highlight);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--highlight);
    color: var(--light);
}

.btn-cookie:hover {
    background: #d97042;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--accent);
}

.btn-cookie-alt:hover {
    background: var(--accent);
    color: var(--dark);
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: var(--highlight);
}

.nav-cta .btn-nav {
    background: var(--highlight);
    color: var(--light);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta .btn-nav:hover {
    background: var(--primary);
}

.hero-asymmetric {
    margin-top: 80px;
    padding: 5rem 3rem 3rem;
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-left: 4rem;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.btn-hero {
    display: inline-block;
    background: var(--highlight);
    color: var(--light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.hero-image-overlap img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    box-shadow: -20px 20px 0 var(--accent);
}

.hero-stat-cards {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    margin-left: 8rem;
}

.stat-card {
    background: var(--gray);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-top: 0.5rem;
}

.intro-offset {
    padding: 6rem 3rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 1.2;
    padding-right: 3rem;
}

.section-title-creative {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--secondary);
}

.intro-image-side {
    flex: 1;
}

.intro-image-side img {
    width: 100%;
    max-width: 500px;
    height: auto;
    transform: translateX(40px);
}

.problem-amplify {
    background: var(--primary);
    color: var(--light);
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.problem-block-left {
    flex: 1;
    max-width: 600px;
    margin-left: 8rem;
    position: relative;
    z-index: 2;
}

.problem-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-block-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--accent);
}

.problem-visual {
    flex: 1;
    position: relative;
}

.problem-overlay {
    background: var(--highlight);
    padding: 3rem 2rem;
    transform: rotate(-3deg);
    display: inline-block;
}

.problem-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light);
}

.insight-creative {
    padding: 6rem 3rem;
    background: var(--gray);
}

.insight-header-offset {
    max-width: 700px;
    margin: 0 0 4rem 6rem;
}

.insight-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.insight-lead {
    font-size: 1.2rem;
    color: var(--secondary);
}

.insight-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    background: var(--light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-card:nth-child(1) {
    transform: translateY(-20px);
}

.insight-card:nth-child(2) {
    transform: translateY(20px);
}

.insight-card:nth-child(3) {
    transform: translateY(-10px);
}

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-card h4 {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary);
}

.services-pricing-offset {
    padding: 6rem 3rem;
    max-width: 1500px;
    margin: 0 auto;
}

.services-header {
    max-width: 800px;
    margin-bottom: 4rem;
    margin-left: 5rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.15rem;
    color: var(--secondary);
    line-height: 1.7;
}

.services-list-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    background: var(--gray);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.service-offset-1 {
    margin-left: 0;
    max-width: 900px;
}

.service-offset-2 {
    margin-left: 10rem;
    max-width: 850px;
}

.service-offset-3 {
    margin-left: 3rem;
    max-width: 920px;
}

.service-offset-4 {
    margin-left: 12rem;
    max-width: 880px;
}

.service-offset-5 {
    margin-left: 5rem;
    max-width: 900px;
}

.service-offset-6 {
    margin-left: 8rem;
    max-width: 890px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--highlight);
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--secondary);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
}

.btn-service {
    align-self: flex-start;
    background: var(--primary);
    color: var(--light);
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background: var(--highlight);
    transform: translateX(5px);
}

.trust-section {
    padding: 6rem 3rem;
    background: var(--light);
}

.trust-content-split {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--secondary);
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.testimonials-creative {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--gray);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.testimonial-3 {
    transform: translateY(0);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary);
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
}

.benefits-reveal {
    padding: 6rem 3rem;
    background: var(--primary);
    color: var(--light);
}

.benefits-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 350px;
}

.benefit-medium {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.benefit-small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 280px;
}

.benefit-block h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--highlight);
}

.benefit-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--accent);
}

.cta-floating {
    padding: 6rem 3rem;
    background: var(--gray);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light);
    padding: 4rem;
    box-shadow: 20px 20px 0 var(--accent);
}

.form-header-creative {
    margin-bottom: 3rem;
}

.form-header-creative h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-header-creative p {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.7;
}

.contact-form-creative {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid var(--accent);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: var(--highlight);
    color: var(--light);
    padding: 1.1rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.final-cta-offset {
    padding: 6rem 3rem;
    background: var(--light);
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 2.5rem;
}

.btn-final {
    display: inline-block;
    background: var(--highlight);
    color: var(--light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: var(--primary);
    transform: scale(1.05);
}

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

.footer-content {
    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 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-column a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--highlight);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .nav-asymmetric {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-asymmetric {
        padding: 4rem 2rem 2rem;
    }

    .hero-content-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text-block {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-overlap {
        margin-top: 0;
    }

    .hero-stat-cards {
        margin-left: 0;
        justify-content: center;
    }

    .intro-offset {
        flex-direction: column;
        gap: 3rem;
    }

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

    .intro-image-side img {
        transform: translateX(0);
    }

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

    .problem-block-left {
        margin-left: 0;
    }

    .insight-header-offset {
        margin-left: 0;
    }

    .services-header {
        margin-left: 0;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5,
    .service-offset-6 {
        margin-left: 0;
        max-width: 100%;
    }

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

    .form-container-asymmetric {
        padding: 3rem 2rem;
    }
}

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

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title-creative {
        font-size: 2rem;
    }

    .insight-title {
        font-size: 2.2rem;
    }

    .services-title {
        font-size: 2.3rem;
    }

    .benefits-title {
        font-size: 2.3rem;
    }

    .form-container-asymmetric {
        padding: 2rem 1.5rem;
        box-shadow: 10px 10px 0 var(--accent);
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
