* {
    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-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.btn-cookie-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #357abd;
}

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.nav-ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 12px;
}

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

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

.nav-links a:hover {
    color: #4a90e2;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 8%;
    margin-top: -5rem;
}

.hero-title-large {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-primary:hover {
    background-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(5deg);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background-color: #e0e0e0;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 8rem auto 6rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    margin-left: 10%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.intro-visual-break {
    flex: 1;
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8e8e8;
}

.intro-visual-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-amplification {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-card-left {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-right: -5rem;
    z-index: 10;
    position: relative;
}

.problem-card-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-card-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.problem-image-overlap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8e8e8;
}

.problem-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-section {
    max-width: 1400px;
    margin: 10rem auto 8rem;
    padding: 0 2rem;
}

.insight-header-asymmetric {
    max-width: 700px;
    margin-left: 15%;
    margin-bottom: 5rem;
}

.insight-header-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-header-asymmetric p {
    font-size: 1.2rem;
    color: #666;
}

.insight-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-block-offset {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    max-width: 800px;
}

.insight-block-offset.delay-1 {
    margin-left: 20%;
}

.insight-block-offset.delay-2 {
    margin-left: 10%;
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e0e0;
    line-height: 1;
}

.insight-block-offset h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.insight-block-offset p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.services-diagonal {
    max-width: 1600px;
    margin: 10rem auto 8rem;
    padding: 0 2rem;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 10%;
    color: #1a1a1a;
}

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

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

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

.service-card.large {
    flex-basis: calc(60% - 1rem);
}

.service-card.medium {
    flex-basis: calc(50% - 1rem);
}

.service-card.small {
    flex-basis: calc(33.333% - 1.5rem);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.btn-service-select {
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-service-select:hover {
    background-color: #4a90e2;
    transform: translateY(-2px);
}

.testimonials-asymmetric {
    max-width: 1200px;
    margin: 10rem auto 8rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.testimonial-offset-left {
    max-width: 600px;
    margin-left: 5%;
}

.testimonial-offset-right {
    max-width: 600px;
    margin-left: auto;
    margin-right: 10%;
}

blockquote {
    background-color: #f8f8f8;
    padding: 2.5rem;
    border-left: 6px solid #4a90e2;
    border-radius: 8px;
}

blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 1rem;
}

cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.process-reveal {
    max-width: 1000px;
    margin: 10rem auto 8rem;
    padding: 0 2rem;
}

.process-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.process-steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.process-step:nth-child(odd) {
    margin-left: 5%;
}

.process-step:nth-child(even) {
    margin-left: 15%;
}

.process-icon {
    font-size: 2rem;
    color: #4a90e2;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.cta-diagonal {
    max-width: 1400px;
    margin: 10rem auto 8rem;
    padding: 0 2rem;
}

.cta-content-overlap {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 5rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: 10%;
    transform: rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-content-overlap h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-overlap p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 1.1rem;
    color: #4a90e2;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: #2c2c2c;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .hero-content-offset {
        margin-left: 5%;
    }

    .hero-image-diagonal {
        width: 50%;
        right: 0;
    }

    .service-card.large,
    .service-card.medium {
        flex-basis: 100%;
    }

    .service-card.small {
        flex-basis: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 1rem 3rem;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        margin-top: 2rem;
        transform: rotate(0);
    }

    .intro-offset,
    .problem-amplification {
        flex-direction: column;
        margin: 4rem auto;
    }

    .intro-narrow {
        margin-left: 0;
        max-width: 100%;
    }

    .problem-card-left {
        margin-right: 0;
    }

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

    .insight-header-asymmetric h2 {
        font-size: 2rem;
    }

    .insight-block-offset.delay-1,
    .insight-block-offset.delay-2 {
        margin-left: 0;
    }

    .section-title-offset {
        font-size: 2rem;
        margin-left: 0;
    }

    .service-card.small {
        flex-basis: 100%;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        margin-left: 0;
    }

    .cta-content-overlap {
        margin-left: 0;
        transform: rotate(0);
        padding: 3rem 2rem;
    }

    .cta-content-overlap h2 {
        font-size: 1.75rem;
    }

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