
/* =========================
       PRODUCT & HERO
========================= */

.product-hero-wrapper {
    padding: 0 0 40px 0;
    width: 100%;
    max-width: none;
}

.product-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 440px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

    .product-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(5,20,30,.52),rgba(10,35,50,.24));
    }

.product-hero-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 60px;
    border-radius: 26px;
    background: rgba(12,25,38,.28);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 32px rgba(0,0,0,.14);
    text-align: center;
}

/*.product-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff;
    margin-bottom: 22px;
}*/

.product-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.0rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 22px;
}

/*.product-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;*/ /* behold ca. det du har nu */
    /*font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 22px;
}*/

.product-hero-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,.92);
    margin-bottom: 24px;
}

.product-hero-note {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,.76);
}

.product-section {
    padding: 50px 0;
}

    .product-section.alt {
        background: #f5f7f8;
    }

.product-layout {
    display: flex;
    align-items: stretch;
    gap: 70px;
}

.product-section.alt .product-layout {
    flex-direction: row-reverse;
}

.product-image {
    flex: 0 0 44%;
    display: flex;
}

.product-image-box {
    width: 100%;
    min-height: 500px;
    transform: translateZ(0);
    backface-visibility: hidden;
    border-radius: 18px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 18px 45px rgba(0,0,0,.10),0 3px 10px rgba(0,0,0,.06),0 0 0 1px rgba(0,0,0,.04);
    overflow: hidden;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    color: #2c6f7c;
    font-size: 2.6rem;
    margin-bottom: 28px;
}

.product-subtitle {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.0;
    color: #2f8696;
    margin-bottom: 20px;
}

.product-content p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #426f7b;
    margin-bottom: 0.6rem;
    text-align: justify;
    hyphens: auto;
}

.service-list {
    margin: 4px 0 24px 0;
    padding: 0;
    list-style: none;
}

    .service-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 7px;
        font-size: 1rem;
        line-height: 1.3;
        color: #426f7b;
    }

        .service-list li::before {
            content: "›";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c6f7c;
        }

.product-link {
    background: #2f8696;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
    width: max-content;
}

    .product-link:hover {
        background: #3d98a9;
        transform: translateY(-1px);
        color: #fff;
        box-shadow: 0 8px 18px rgba(47,134,150,.18);
        text-decoration: none;
    }

/*
                        .btn-comvis {
                            background: #2f8696;
                            border: none;
                            color: #fff;
                            border-radius: 12px;
                            padding: 12px 20px;
                            font-weight: 600;
                            transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
                            padding: 14px 26px;
                            font-size: 1rem;
                        }

                            .btn-comvis:hover {
                                background: #3d98a9;
                                transform: translateY(-1px);
                                box-shadow: 0 8px 18px rgba(47,134,150,.18);
                                color: #fff;
                            }*/

@media (max-width:1200px) {
    .product-layout {
        gap: 42px;
    }
}

@media (max-width:991px) {
    .product-hero {
        min-height: 360px;
    }

    .product-hero-panel {
        padding: 34px;
    }

    .product-hero-title {
        font-size: 2.8rem;
    }

    .product-hero-text {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .product-layout {
        flex-direction: column;
        gap: 36px;
    }

    .product-section.alt .product-layout {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
    }

    .product-image-box {
        height: 420px;
        min-height: 420px;
    }

    .product-content {
        width: 100%;
        text-align: justify;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

@media (max-width:767px) {
    .product-hero {
        min-height: 320px;
    }

    .product-hero-panel {
        padding: 28px;
        border-radius: 18px;
    }

    .product-hero-title {
        font-size: 2.2rem;
    }

    .product-section {
        padding: 50px 0;
    }

    .product-title {
        font-size: 1.95rem;
        line-height: 1.15;
    }

    .product-image-box {
        height: 280px;
        min-height: 280px;
        border-radius: 12px;
    }

    .product-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* =========================
           SUB HERO
========================= */
.subhero {
    position: relative;
    height: 260px;
    background-image: url('/Images/Banner_ProjektGennemgang.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .subhero:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.28) 34%, rgba(0,0,0,.08) 68%, rgba(0,0,0,.02) 100% );
        z-index: 1;
    }

    .subhero .container {
        position: relative;
        z-index: 2;
        max-width: 1320px;
    }

.subhero-content {
    max-width: 460px;
    margin-left: 6px;
    color: #fff;
}

.subhero-breadcrumb {
    font-size: 12px;
    opacity: .82;
    margin-bottom: 10px;
    letter-spacing: .2px;
}

    .subhero-breadcrumb a {
        color: rgba(255,255,255,.82);
        text-decoration: none;
        transition: opacity .16s ease;
    }

        .subhero-breadcrumb a:hover {
            opacity: 1;
        }

    .subhero-breadcrumb span {
        margin: 0 6px;
        opacity: .5;
    }

.subhero-title {
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.subhero-line {
    width: 68px;
    height: 3px;
    background: #18a566;
    border-radius: 20px;
    margin-bottom: 14px;
}

.subhero-text {
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255,255,255,.92);
    text-shadow: 0 1px 4px rgba(0,0,0,.14);
}

/* =========================
      PRODUKT CAROUSEL
========================= */

.product-carousel {
    width: 100%;
}

    .product-carousel .carousel-inner {
        height: 100%;
    }

    .product-carousel .carousel-item {
        height: 100%;
    }

    .product-carousel .product-image-box {
        height: 100%;
        min-height: 500px;
    }

    .product-carousel .carousel-control-prev,
    .product-carousel .carousel-control-next {
        width: 12%;
        opacity: 1;
    }

    .product-carousel .carousel-control-prev-icon,
    .product-carousel .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background-color: rgba(44,111,124,.92);
        background-size: 55%;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
    }

    .product-carousel .carousel-indicators {
        margin-bottom: 18px;
    }

        .product-carousel .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255,255,255,.75);
        }

        .product-carousel .carousel-indicators .active {
            background-color: #ffffff;
        }

/* =========================
           TOOLTIP
========================= */

.tooltip .tooltip-inner {
    background-color: #2f8696 !important;
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(47,134,150,.20);
}

/* PIL */

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #2f8696 !important;
}

.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #2f8696 !important;
}

.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #2f8696 !important;
}

.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #2f8696 !important;
}

/* =========================
       COMVIS BUTTON
========================= */

.btn-comvis {
    background: #2f8696;
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
    padding: 14px 26px;
    font-size: 1rem;
    text-decoration: none !important;
}

    .btn-comvis:hover {
        background: #3d98a9;
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(47,134,150,.18);
        color: #fff;
        text-decoration: none !important;
    }

/* =========================
       BOXES & ICONS
========================= */

.assistance-box {
    background: #eef3f4;
    border-radius: 28px;
    padding: 34px 40px;
}

.assistance-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #dce7ea;
    color: #2d7a89;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
