/* ==========================================================================
   Managed hosting funnel — live calculator + scenario-kaarten
   Kleuren volgen de theme-tokens: #383158 (purple), #FF785C (salmon),
   #FFA82F (yellow), #f9f9f9 (light grey), #e6e8ee (border).
   ========================================================================== */

/* ----- Live calculator ------------------------------------------------- */
.mh-calc { margin: 8rem 0; }

.mh-calc__head { max-width: 74rem; margin: 0 auto 4.5rem; text-align: center; }
.mh-calc__head h2 { color: #383158; font-size: 3.4rem; line-height: 1.15; margin-bottom: 1.4rem; }
.mh-calc__head p { color: #5a5478; font-size: 1.7rem; line-height: 1.6; }

.mh-calc__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mh-calc__controls {
    background: #f9f9f9;
    border: 1px solid #e6e8ee;
    border-radius: 1.6rem;
    padding: 3.4rem;
}

.mh-calc__row { margin-bottom: 3rem; }
.mh-calc__row:last-of-type { margin-bottom: 0; }

.mh-calc__label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.1rem; }
.mh-calc__label > span:first-child {
    font-size: 1.4rem; font-weight: 700; color: #383158;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.mh-calc__val { font-size: 2.2rem; font-weight: 800; color: #FF785C; }

.mh-calc__range {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 0.8rem; border-radius: 1rem;
    background: #e6e8ee; accent-color: #FFA82F; cursor: pointer;
}
.mh-calc__range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 2.4rem; height: 2.4rem; border-radius: 50%;
    background: #FFA82F; border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(56, 49, 88, 0.25); cursor: pointer;
}
.mh-calc__range::-moz-range-thumb {
    width: 2.4rem; height: 2.4rem; border-radius: 50%;
    background: #FFA82F; border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(56, 49, 88, 0.25); cursor: pointer;
}

.mh-calc__managed {
    display: flex; align-items: flex-start; gap: 1.1rem;
    font-size: 1.6rem; font-weight: 700; color: #383158; cursor: pointer;
    margin-top: 3rem; padding-top: 2.6rem; border-top: 1px solid #e6e8ee;
}
.mh-calc__managed input { accent-color: #FFA82F; width: 2rem; height: 2rem; margin-top: 0.2rem; flex-shrink: 0; }
.mh-calc__managed em { display: block; font-style: normal; font-weight: 400; font-size: 1.3rem; color: #5a5478; margin-top: 0.4rem; }

.mh-calc__summary {
    background: #383158; color: #fff;
    border-radius: 1.6rem; padding: 3.4rem;
    position: sticky; top: 2rem;
}
.mh-calc__spec { font-size: 1.5rem; opacity: 0.82; margin-bottom: 1.6rem; }
.mh-calc__price { display: flex; flex-direction: column; margin-bottom: 2.6rem; }
.mh-calc__price span { font-size: 4.4rem; font-weight: 800; line-height: 1; color: #fff; }
.mh-calc__price small { font-size: 1.4rem; opacity: 0.78; margin-top: 0.8rem; }

.mh-calc__cta { width: 100%; justify-content: center; margin-bottom: 1.4rem; }
.mh-calc__advice {
    display: block; text-align: center; color: #fff; opacity: 0.85;
    font-size: 1.4rem; text-decoration: underline; text-underline-offset: 0.2em;
}
.mh-calc__advice:hover { opacity: 1; }

.mh-calc__incl { list-style: none; margin: 2.8rem 0 0; padding: 2.6rem 0 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.mh-calc__incl li { display: flex; gap: 1rem; align-items: flex-start; font-size: 1.4rem; line-height: 1.5; margin-bottom: 1.1rem; opacity: 0.92; }
.mh-calc__incl li:last-child { margin-bottom: 0; }
.mh-calc__incl li::before { content: "✓"; color: #FFA82F; font-weight: 800; flex-shrink: 0; }

@media (max-width: 820px) {
    .mh-calc { margin: 6rem 0; }
    .mh-calc__grid { grid-template-columns: 1fr; gap: 2rem; }
    .mh-calc__summary { position: static; }
    .mh-calc__controls, .mh-calc__summary { padding: 2.6rem; }
    .mh-calc__head h2 { font-size: 2.8rem; }
}

/* ----- Scenario → pakket ------------------------------------------------ */
.mh-scen { margin: 8rem 0; }
.mh-scen__head { max-width: 74rem; margin: 0 auto 4.5rem; text-align: center; }
.mh-scen__head h2 { color: #383158; font-size: 3.4rem; line-height: 1.15; margin-bottom: 1.4rem; }
.mh-scen__head p { color: #5a5478; font-size: 1.7rem; line-height: 1.6; }

.mh-scen__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem; }

.mh-scen__card {
    background: #fff; border: 1px solid #e6e8ee; border-radius: 1.6rem;
    padding: 3rem; display: flex; flex-direction: column;
    transition: 0.28s all;
}
.mh-scen__card:hover { border-color: #FF785C; box-shadow: 0 1.2rem 3.2rem rgba(56, 49, 88, 0.12); transform: translateY(-0.4rem); }
.mh-scen__icon { font-size: 3rem; line-height: 1; margin-bottom: 1.6rem; }
.mh-scen__card h3 { color: #383158; font-size: 2rem; line-height: 1.25; margin-bottom: 1.1rem; }
.mh-scen__card p { color: #5a5478; font-size: 1.5rem; line-height: 1.6; margin-bottom: 1.8rem; flex-grow: 1; }
.mh-scen__spec { font-size: 1.4rem; font-weight: 700; color: #FF785C; margin-bottom: 2rem; }
.mh-scen__btn { align-self: flex-start; }

@media (max-width: 820px) {
    .mh-scen { margin: 6rem 0; }
    .mh-scen__grid { grid-template-columns: 1fr; }
    .mh-scen__head h2 { font-size: 2.8rem; }
}

/* ----- Brochure lead-magnet ------------------------------------------- */
.mh-broch { margin: 8rem 0; }
.mh-broch__inner {
    display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 4rem; align-items: center;
    background: #f9f9f9; border: 1px solid #e6e8ee; border-radius: 1.6rem;
    padding: 4rem 4.5rem;
}
.mh-broch__cover img {
    width: 100%; max-width: 32rem; display: block; margin: 0 auto;
    height: auto !important; aspect-ratio: 850 / 1100; object-fit: cover;
    border-radius: 0.8rem; box-shadow: 0 1.8rem 4rem rgba(56, 49, 88, 0.22);
    transform: rotate(-2deg);
}
.mh-broch__eyebrow {
    font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; color: #FF785C; margin-bottom: 1rem;
}
.mh-broch__body h2 { color: #383158; font-size: 3rem; line-height: 1.15; margin-bottom: 1.4rem; }
.mh-broch__body > p { color: #5a5478; font-size: 1.6rem; line-height: 1.6; margin-bottom: 1.8rem; }
.mh-broch__points { list-style: none; margin: 0 0 2.4rem; padding: 0; }
.mh-broch__points li {
    display: flex; gap: 1rem; align-items: flex-start;
    color: #383158; font-size: 1.5rem; line-height: 1.55; margin-bottom: 0.9rem;
}
.mh-broch__points li::before { content: "\2713"; color: #FFA82F; font-weight: 800; flex-shrink: 0; }

@media (max-width: 820px) {
    .mh-broch { margin: 6rem 0; }
    .mh-broch__inner { grid-template-columns: 1fr; padding: 2.6rem; gap: 2.6rem; }
    .mh-broch__cover img { max-width: 22rem; }
    .mh-broch__body h2 { font-size: 2.4rem; }
}

/* Popup: GF-submitknop in huisstijl (default GF-knop is ongestyled) */
#mh-broch-popup .gform_footer { margin-top: 1rem; }
#mh-broch-popup .gform_button {
    display: inline-flex; align-items: center; justify-content: center;
    background: #FFA82F; color: #383158; border: 0; cursor: pointer;
    font-weight: 800; font-size: 1.6rem; font-family: inherit;
    height: 5rem; padding: 0 3rem; border-radius: 3rem; transition: 0.28s all;
}
#mh-broch-popup .gform_button:hover { filter: brightness(0.95); }

/* ----- Klantstrip onder de hero ----------------------------------------- */
.mh-clients { background: #383158; padding: 3.2rem 0 3.6rem; }
.mh-clients__inner > span {
    display: block; color: #b7b3d4; font-size: 1.3rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.6rem;
}
.mh-clients__inner ul {
    list-style: none; display: flex; gap: 1.6rem 5rem; flex-wrap: wrap;
    align-items: baseline; margin: 0; padding: 0;
}
.mh-clients__inner li {
    color: #fff; font-size: 2.4rem; font-weight: 800;
    letter-spacing: -0.01em; white-space: nowrap;
}
@media (max-width: 820px) {
    .mh-clients__inner li { font-size: 1.8rem; }
    .mh-clients__inner ul { gap: 1rem 2.8rem; }
}

/* ----- Slot-CTA band ---------------------------------------------------- */
.mh-cta { margin: 8rem 0; }
.mh-cta__inner {
    display: grid; grid-template-columns: 1.4fr auto; gap: 3rem; align-items: center;
    background: linear-gradient(140deg, #383158, #2f2a4d); border-radius: 1.6rem;
    padding: 4rem 4.5rem;
}
.mh-cta__inner h2 { color: #fff; font-size: 2.8rem; line-height: 1.15; margin-bottom: 1rem; }
.mh-cta__inner p { color: #cfcce0; font-size: 1.5rem; line-height: 1.6; margin: 0; }
.mh-cta__btns { display: flex; flex-direction: column; gap: 1.2rem; }
.mh-cta__btns .c-btn { justify-content: center; }

@media (max-width: 820px) {
    .mh-cta { margin: 6rem 0; }
    .mh-cta__inner { grid-template-columns: 1fr; padding: 2.6rem; }
    .mh-cta__btns { flex-direction: row; flex-wrap: wrap; }
}

/* ---- Bestel-blok (managed hosting): rustiger, gelijke kaarten, knop onderaan vastgezet ---- */
.o-package-container--mh .o-package-container__items { align-items: stretch; }
.o-package-container--mh .c-package-item.mh-pkg { display: flex; flex-direction: column; text-align: center; }
.o-package-container--mh .c-package-item.mh-pkg .c-package-item__price { justify-content: center; align-items: baseline; gap: 0.7rem; margin: 0.4rem 0 1.8rem; }
.o-package-container--mh .c-package-item.mh-pkg .c-package-item__price small { margin-left: 0; font-size: 1.25rem; line-height: 1.15; color: #5a5478; text-align: left; }
.mh-pkg__specs { list-style: none; margin: 0 0 2rem; padding: 1.8rem 0; border-top: 1px solid #e6e8ee; border-bottom: 1px solid #e6e8ee; }
.mh-pkg__specs li { font-size: 1.6rem; font-weight: 700; color: #383158; line-height: 2; }
.mh-pkg__incl { list-style: none; margin: 0 0 2.6rem; padding: 0; text-align: left; }
.mh-pkg__incl li { position: relative; padding-left: 2.6rem; font-size: 1.5rem; color: #5a5478; line-height: 1.5; margin-bottom: 0.8rem; }
.mh-pkg__incl li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #FFA82F; font-weight: 800; }
.o-package-container--mh .c-package-item.mh-pkg .c-btn.mh-pkg__btn { margin-top: auto !important; width: 100%; }
@media screen and (max-width: 800px) { .mh-pkg__incl { max-width: 28rem; margin-left: auto; margin-right: auto; } }

/* ----- Verwijsblok naar de losse calculator-pagina ---------------------- */
.mh-teaser { margin: 8rem 0; }
.mh-teaser__inner {
    display: grid; grid-template-columns: 1.4fr auto; gap: 3rem; align-items: center;
    background: #f9f9f9; border: 1px solid #e6e8ee; border-radius: 1.6rem;
    padding: 4rem 4.5rem;
}
.mh-teaser__inner h2 { color: #383158; font-size: 2.8rem; line-height: 1.15; margin-bottom: 1rem; }
.mh-teaser__inner p { color: #5a5478; font-size: 1.5rem; line-height: 1.6; margin: 0; }

@media (max-width: 820px) {
    .mh-teaser { margin: 6rem 0; }
    .mh-teaser__inner { grid-template-columns: 1fr; padding: 2.6rem; }
}

/* ----- Kop van de losse configurator-pagina -----------------------------
   De site-header staat position:absolute over de pagina heen; zonder de
   padding-top van 15rem (zelfde patroon als de overige hero's) valt de kop
   onder het logo en de topbar. */
.mh-config-head { padding-top: 15rem; margin: 0 0 2rem; }
.mh-config-head__eyebrow {
    font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; color: #FF785C; margin-bottom: 1rem;
}
.mh-config-head h1 { color: #383158; font-size: 4rem; line-height: 1.1; margin-bottom: 1.4rem; }
.mh-config-head p { color: #5a5478; font-size: 1.7rem; line-height: 1.6; max-width: 74rem; }
.mh-config-head p a { color: #FF785C; text-decoration: underline; }

@media (max-width: 820px) {
    .mh-config-head { margin: 0 0 1rem; }
    .mh-config-head h1 { font-size: 3.2rem; }
}

/* ----- Blok 5: uitgelichte klantcase Proud Nerds ------------------------ */
.mh-case { margin: 8rem 0; }
.mh-case__inner {
    display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 4rem; align-items: center;
    background: #f9f9f9; border: 1px solid #e6e8ee; border-radius: 1.6rem;
    padding: 4rem 4.5rem;
}
.mh-case__visual img {
    width: 100%; display: block; border-radius: 0.8rem;
    /* lazyload injecteert een placeholder-hoogte -> zonder dit rekt de foto uit */
    height: auto !important; aspect-ratio: 4 / 3; object-fit: cover;
}
.mh-case__eyebrow {
    font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; color: #FF785C; margin-bottom: 1rem;
}
.mh-case__body h2 { color: #383158; font-size: 2.8rem; line-height: 1.2; margin-bottom: 2rem; }

@media (max-width: 820px) {
    .mh-case { margin: 6rem 0; }
    .mh-case__inner { grid-template-columns: 1fr; padding: 2.6rem; gap: 2.6rem; }
}
