.investering {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

/* Hero intro section - same as realised-projects */
.investering__hero {
    position: relative;
    width: 100%;
    height: 575px;
    aspect-ratio: 288/115;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.investering__hero-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
}

.investering__hero-bg-bottom {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.investering__hero-image-wrapper {
    position: relative;
    width: 1600px;
    max-width: 1600px;
    height: 100%;
    z-index: 2;
    margin: 0 auto;
    transition: width 0.1s ease-out, max-width 0.1s ease-out;
    overflow: hidden;
    border-radius: 28px;
}

/* For screens 1600px and larger, start at 90vw to match JS animation */
@media (min-width: 1600px) {
    .investering__hero-image-wrapper {
        width: 90vw;
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    .investering__hero-image-wrapper {
        width: 95%;
        max-width: 95%;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .investering__hero-image-wrapper {
        width: 92%;
        max-width: 92%;
        border-radius: 16px;
    }
}

.investering__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

@media (max-width: 768px) {
    .investering__hero-image {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .investering__hero-image {
        border-radius: 16px;
    }
}

.investering__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
}

/* Title section - LEFT ALIGNED unlike realised-projects (centered) */
.investering__title-section {
    position: relative;
    width: 100%;
    margin-top: -95px;
    margin-bottom: 250px;
    z-index: 10;
    background: transparent;
}

.investering__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.investering__title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 128px;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -2.4px;
    margin: 0;
    margin-bottom: -120px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.investering__title-line1,
.investering__title-line2 {
    display: block;
}

.investering__content {
    width: 100%;
    padding: 0 0 80px 0;
    position: relative;
    z-index: 10;
}

.investering__text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.investering__text-left {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.6px;
}

.investering__text-left p {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    margin: 0 0 16px 0;
}

.investering__text-left p:last-child {
    margin-bottom: 0;
}

.investering__text-right-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.investering__text-right {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.45px;
}

.investering__text-right p {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    margin: 0 0 16px 0;
}

.investering__text-right p:last-child {
    margin-bottom: 0;
}

.investering__text-right strong {
    color: inherit;
    font-weight: 700;
}

.investering__text-right p a {
    color: #EF7D00;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #EF7D00;
    padding-bottom: 0px;
}

.investering__text-right p a:hover {
    color: #FF8C42;
    border-bottom-color: #FF8C42;
}

/* CTA Button */
.investering__cta {
    display: flex;
    align-items: flex-start;
}

.investering__cta-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
}

.investering__cta-link:hover {
    transform: translateX(4px);
}

.investering__cta-link:active {
    transform: translateX(2px);
}

.investering__cta-icon {
    flex-shrink: 0;
    width: 28px;
    height: 19px;
    transition: all 0.3s ease;
}

.investering__cta-link span {
    transition: color 0.3s ease;
}

.investering__bottom-section {
    display: flex;
    gap: 60px;
    align-items: start;
    position: relative;
}

.investering__bottom-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-left: calc(-1 * (50vw - 50% + 40px));
    max-width: calc(50vw + 50% - 220px);
}

.investering__image {
    width: 100%;
    height: auto;
    display: block;
}

.investering__stats {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 40px;
    border-radius: 16px;
    flex-shrink: 0;
    width: 400px;
}

.investering__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.investering__stat-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.investering__stat-number {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.4px;
}

.investering__stat-unit {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.2px;
}

.investering__stat-description {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.45px;
}

@media (max-width: 1024px) {
    .investering__hero {
        height: auto;
    }
    
    .investering__title-section {
        margin-top: -70px;
        margin-bottom: 120px;
        padding: 0 20px;
    }
    
    .investering__title {
        font-size: 64px;
        letter-spacing: -1.6px;
    }
    
    .investering__container {
        padding: 0 32px;
    }
    
    .investering__content {
        padding: 0 0 60px 0;
    }
    
    .investering__text-wrapper {
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .investering__text-left {
        font-size: 22px;
        letter-spacing: -0.55px;
    }
    
    .investering__text-right {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    
    .investering__cta-link {
        font-size: 16px;
    }
    
    .investering__cta-icon {
        width: 24px;
        height: 16px;
    }
    
    .investering__bottom-section {
        flex-direction: column;
        gap: 48px;
    }
    
    .investering__bottom-image {
        margin-left: calc(-1 * (50vw - 50% + 32px));
        max-width: calc(100vw - 64px);
    }
    
    .investering__stats {
        padding: 40px 32px;
        gap: 12px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    
    .investering__stat {
        flex: 1;
        max-width: 33.333%;
        min-width: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .investering__stat-value {
        display: flex;
        flex-direction: row;
        gap: 4px;
        align-items: baseline;
        justify-content: center;
        margin-bottom: 16px;
        min-height: 60px;
    }
    
    .investering__stat-number {
        font-size: 64px;
        letter-spacing: -1.6px;
        line-height: 1;
    }
    
    .investering__stat-unit {
        font-size: 32px;
        letter-spacing: -0.8px;
        line-height: 1;
    }
    
    .investering__stat-description {
        font-size: 16px;
        letter-spacing: -0.4px;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .investering__hero {
        height: auto;
    }
    
    .investering__title-section {
        margin-top: -60px;
        margin-bottom: 100px;
        padding: 0 20px;
        text-align: center;
    }
    
    .investering__title {
        font-size: 54px;
        letter-spacing: -1.2px;
    }
    
    .investering__container {
        padding: 0 20px;
    }
    
    .investering__content {
        padding: 0 0 60px 0;
    }
    
    .investering__text-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .investering__text-left {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    
    .investering__text-right {
        font-size: 15px;
        letter-spacing: -0.38px;
    }
    
    .investering__cta-link {
        font-size: 15px;
    }
    
    .investering__cta-icon {
        width: 22px;
        height: 15px;
    }
    
    .investering__bottom-section {
        gap: 36px;
    }

    .investering__hero-bg-bottom {
        background-color: white;
    }
    
    .investering__bottom-image {
        margin-left: calc(-1 * (50vw - 50% + 20px));
        max-width: calc(100vw - 40px);
    }
    
    .investering__stats {
        padding: 32px 20px;
        gap: 8px;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    
    .investering__stat {
        flex: 1;
        max-width: 33.333%;
        min-width: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .investering__stat-value {
        display: flex;
        flex-direction: row;
        gap: 2px;
        align-items: baseline;
        justify-content: center;
        margin-bottom: 12px;
        min-height: 50px;
    }
    
    .investering__stat-number {
        font-size: 48px;
        letter-spacing: -1.2px;
        line-height: 1;
    }
    
    .investering__stat-unit {
        font-size: 24px;
        letter-spacing: -0.6px;
        line-height: 1;
    }
    
    .investering__stat-description {
        font-size: 14px;
        letter-spacing: -0.35px;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }

    .investering__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 32px;
        border-radius: 20px;
    }

    .investering__hero-image {
        border-radius: 20px;
    }

    .investering__title-section {
        text-align: center;
    }

    .investering__title {
        margin-bottom: 24px;
    }

    .investering__cta {
        justify-content: center;
    }

    .investering__stats {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .investering__hero {
        height: auto;
    }
    
    .investering__title-section {
        margin-top: -52px;
        margin-bottom: 80px;
        padding: 0 16px;
        text-align: center;
    }
    
    .investering__title {
        font-size: 38px;
        letter-spacing: -0.9px;
    }
    
    .investering__container {
        padding: 0 16px;
    }
    
    .investering__content {
        padding: 0 0 28px 0;
    }
    
    .investering__text-wrapper {
        gap: 24px;
        margin-bottom: 36px;
    }
    
    .investering__text-left {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    
    .investering__text-right {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    
    .investering__cta-link {
        font-size: 14px;
    }
    
    .investering__cta-icon {
        width: 20px;
        height: 14px;
    }
    
    .investering__bottom-section {
        gap: 28px;
    }
    
    .investering__bottom-image {
        margin-left: calc(-1 * (50vw - 50% + 16px));
        max-width: calc(100vw - 32px);
    }
    
    .investering__stats {
        padding: 28px 16px;
        gap: 6px;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    
    .investering__stat {
        flex: 1;
        max-width: 33.333%;
        min-width: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .investering__stat-value {
        display: flex;
        flex-direction: row;
        gap: 2px;
        align-items: baseline;
        justify-content: center;
        margin-bottom: 10px;
        min-height: 42px;
    }
    
    .investering__stat-number {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1;
    }
    
    .investering__stat-unit {
        font-size: 20px;
        letter-spacing: -0.5px;
        line-height: 1;
    }
    
    .investering__stat-description {
        font-size: 12px;
        letter-spacing: -0.3px;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }

    .investering__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 24px;
        border-radius: 16px;
    }

    .investering__hero-image {
        border-radius: 16px;
    }

    .investering__title-section {
        text-align: center;
    }

    .investering__title {
        margin-bottom: 16px;
    }

    .investering__cta {
        justify-content: center;
    }

    .investering__stats {
        width: 100%;
        padding: 20px;
    }
}

.alignfull.investering {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignwide.investering .investering__container {
    max-width: 1280px;
}
